From 03319faf0b8783a6955b6a6cfe0acf5945c61971 Mon Sep 17 00:00:00 2001 From: GillesSimoens Date: Thu, 10 Aug 2023 10:02:21 +0200 Subject: [PATCH] Pyyaml 6.0 will not compile on cython3. See https://github.com/yaml/pyyaml/issues/601. This is fixed in pyyaml 6.0.1. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 74f56d6..3a43685 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="asyncapi-schema-pydantic", - version="1.0.0", + version="1.0.1", description="AsyncAPI (v2) specification schema as pydantic class", long_description=README, long_description_content_type="text/markdown", @@ -21,6 +21,6 @@ "Operating System :: OS Independent", ], packages=find_packages(exclude=["tests"]), - install_requires=["pydantic>=1.8.2", "PyYAML==6.0"], + install_requires=["pydantic>=1.8.2", "PyYAML~=6.0"], python_requires=">=3.7", )