فهرست منبع

Merge branch 'release-0.0.8'

Arkadiusz Ryś 3 سال پیش
والد
کامیت
4ffcf036bc
2فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 1 1
      Dockerfile
  2. 2 2
      ontopoint/__init__.py

+ 1 - 1
Dockerfile

@@ -9,6 +9,6 @@ WORKDIR ${APP_HOME}
 #  libpq-dev \
 #  && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
 #  && rm -rf /var/lib/apt/lists/*
-RUN pip install requirement.txt
+RUN pip install requirements.txt
 ENTRYPOINT ["python3 -m ontopoint"]
 #CMD ["/start.sh"]

+ 2 - 2
ontopoint/__init__.py

@@ -1,3 +1,3 @@
-"""."""
-__version__ = "0.0.7"
+"""Ontology server."""
+__version__ = "0.0.8"
 __version_info__ = tuple((int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")))