Compare commits
9 Commits
1.12.1-fix
...
v1.12.1-fi
Author | SHA1 | Date | |
---|---|---|---|
|
c32da605d0 | ||
|
40dfded213 | ||
|
0e991070a5 | ||
|
bf34914a8a | ||
|
4aee715e48 | ||
|
c649905e69 | ||
|
4015c60cfa | ||
|
a1dcc544cf | ||
|
f278629217 |
@@ -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
|
||||
|
@@ -1,5 +1,5 @@
|
||||
from .view import PydanticView
|
||||
|
||||
__version__ = "1.12.1"
|
||||
__version__ = "1.12.1-fixed4"
|
||||
|
||||
__all__ = ("PydanticView", "__version__")
|
||||
|
1
tasks.py
1
tasks.py
@@ -136,6 +136,7 @@ def prepare_ci_env(c):
|
||||
|
||||
title("Installing wheel", "=")
|
||||
package_version = read_configuration("./setup.cfg")["metadata"]["version"]
|
||||
print([x for x in Path("dist").glob('*')])
|
||||
dist = next(Path("dist").glob(f"aiohttp_pydantic-{package_version}-*.whl"))
|
||||
c.run(f"dist_venv/bin/python -m pip install {dist}")
|
||||
|
||||
|
Reference in New Issue
Block a user