diff --git a/.helm/Chart.yaml b/.helm/Chart.yaml index 65d59c0..cd192d3 100644 --- a/.helm/Chart.yaml +++ b/.helm/Chart.yaml @@ -15,10 +15,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.0.1 +version: 0.0.23 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.0.1" +appVersion: "0.0.23" diff --git a/setup.cfg b/setup.cfg index 0facd2b..053c8ed 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,7 +4,7 @@ [metadata] name = dataset-image-annotator -version = 0.0.1 +version = 0.0.23 description = Image annotation tool author = Oleg Korsak author_email = kamikaze.is.waiting.you@gmail.com @@ -54,14 +54,14 @@ exclude = desktop = PySide6-Essentials==6.4.2 web = - alembic==1.9.1 + alembic==1.9.2 asyncpg==0.27.0 Authlib==1.2.0 passlib==1.7.4 databases[postgresql]==0.7.0 fastapi==0.89.1 fastapi-pagination==0.11.2 - fastapi-users[sqlalchemy]==10.2.1 + fastapi-users[sqlalchemy]==10.3.0 orjson==3.8.5 PyJWT==2.6.0 python-dateutil==2.8.2 diff --git a/setup.py b/setup.py index d21b776..65091b9 100644 --- a/setup.py +++ b/setup.py @@ -4,9 +4,9 @@ from setuptools import setup try: - require('setuptools>=60.5') + require('setuptools>=66.0') except VersionConflict: - print('Error: version of setuptools is too old (<60.5)!') + print('Error: version of setuptools is too old (<66.0)!') sys.exit(1) if __name__ == '__main__':