Arkadiusz Ryś 3 лет назад
Родитель
Сommit
d4000d48e5
2 измененных файлов с 2 добавлено и 3 удалено
  1. 1 2
      .gitlab-ci.yml
  2. 1 1
      ontopoint/__init__.py

+ 1 - 2
.gitlab-ci.yml

@@ -19,10 +19,9 @@ stages:
   - release
 
 before_script:
-  - sudo apt install python3-dev python3-pip
+  - apt-get update && apt-get install -y git python3-dev python3-pip
   - python -V
   - echo "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/pypi"
-  - apt-get update && apt-get install -y git
   - docker info
   # Because we use a private registry (registry.rys.one), we first need to provide credentials.
   # This gives us access to pull and push to the registry.

+ 1 - 1
ontopoint/__init__.py

@@ -1,3 +1,3 @@
 """."""
-__version__ = "0.0.4"
+__version__ = "0.0.5"
 __version_info__ = tuple((int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")))