From 822db3f64902ab9456d9fce6a16727e59186c4b7 Mon Sep 17 00:00:00 2001 From: antazoey Date: Wed, 4 Dec 2024 05:44:56 +0700 Subject: [PATCH] chore: move dependency to test dependency (#33) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0d28dd7..b7654c0 100644 --- a/setup.py +++ b/setup.py @@ -8,6 +8,7 @@ "pytest-xdist", # Multi-process runner "pytest-cov", # Coverage analyzer plugin "hypothesis>=6.2.0,<7", # Strategy-based fuzzer + "ethpm-types", # Imported in tests ], "lint": [ "black>=24.10.0,<25", # Auto-formatter and linter @@ -63,7 +64,6 @@ include_package_data=True, install_requires=[ "eth-ape>=0.8.18,<0.9", - "ethpm-types", # Use same version as eth-ape ], python_requires=">=3.9,<4", extras_require=extras_require,