From 0e991070a5502bbf0e02f59b297549779e4fdcb1 Mon Sep 17 00:00:00 2001 From: Georg K Date: Wed, 30 Mar 2022 20:05:56 +0300 Subject: [PATCH] fix: use tags --- aiohttp_pydantic/__init__.py | 2 +- tasks.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/aiohttp_pydantic/__init__.py b/aiohttp_pydantic/__init__.py index f8484aa..35eb36d 100644 --- a/aiohttp_pydantic/__init__.py +++ b/aiohttp_pydantic/__init__.py @@ -1,5 +1,5 @@ from .view import PydanticView -__version__ = "1.12.1-fixed1" +__version__ = "1.12.1-fixed2" __all__ = ("PydanticView", "__version__") diff --git a/tasks.py b/tasks.py index 205fe89..4dd7648 100644 --- a/tasks.py +++ b/tasks.py @@ -136,6 +136,7 @@ def prepare_ci_env(c): title("Installing wheel", "=") package_version = read_configuration("./setup.cfg")["metadata"]["version"] + print(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}")