Compare commits

...

3 Commits

Author SHA1 Message Date
Georg K
4015c60cfa fix: package version 2.12.1 2022-03-30 19:51:35 +03:00
Georg K
a1dcc544cf fix: package version 2022-03-30 19:48:03 +03:00
Georg K
f278629217 fix: pypi_url parameter 2022-03-30 19:42:32 +03:00
2 changed files with 2 additions and 2 deletions

View File

@@ -6,6 +6,6 @@ publish-pypi:
image: python:3.8
script:
- pip install -U setuptools wheel pip; pip install invoke
- invoke upload --pypi-user ${PYPI_REPO_USER} --pypi-password ${PYPI_REPO_PASSWORD} --pypi_url ${PYPI_REPO_URL}
- invoke upload --pypi-user ${PYPI_REPO_USER} --pypi-password ${PYPI_REPO_PASSWORD} --pypi-url ${PYPI_REPO_URL}
only:
- tags

View File

@@ -1,5 +1,5 @@
from .view import PydanticView
__version__ = "1.12.1"
__version__ = "2.12.1"
__all__ = ("PydanticView", "__version__")