Skip to content

Commit

Permalink
fix: relax packaging dependency bound (#26)
Browse files Browse the repository at this point in the history
relax `packaging` bound as it is incompatible with vyper 0.4.0

https://github.com/vyperlang/vyper/blob/v0.4.0/setup.py#L96
  • Loading branch information
DanielSchiavini committed Sep 20, 2024
1 parent 2526c3e commit c423379
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
include_package_data=True,
py_modules=["vvm"],
python_requires=">=3.8, <4",
install_requires=["requests>=2.32.3,<3", "packaging>=24.1,<25"],
install_requires=["requests>=2.32.3,<3", "packaging>=23.1,<25"],
license="MIT",
zip_safe=False,
keywords="ethereum vyper",
Expand Down

0 comments on commit c423379

Please sign in to comment.