Skip to content

Commit

Permalink
Pyyaml 6.0 will not compile on cython3. See yaml/pyyaml#601. This is …
Browse files Browse the repository at this point in the history
…fixed in pyyaml 6.0.1.
  • Loading branch information
Gilles-qbmt committed Aug 10, 2023
1 parent 83966bd commit 03319fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
)

0 comments on commit 03319fa

Please sign in to comment.