From c4233792f5cca5e314bc854b10781180143f0b56 Mon Sep 17 00:00:00 2001 From: Daniel Schiavini Date: Fri, 20 Sep 2024 17:27:39 +0200 Subject: [PATCH] fix: relax `packaging` dependency bound (#26) relax `packaging` bound as it is incompatible with vyper 0.4.0 https://github.com/vyperlang/vyper/blob/v0.4.0/setup.py#L96 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 07abce8..cb4d1a0 100644 --- a/setup.py +++ b/setup.py @@ -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",