diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d1dcb42..856029b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,7 +10,7 @@ repos: - id: isort - repo: https://github.com/psf/black - rev: 23.11.0 + rev: 23.12.0 hooks: - id: black name: black diff --git a/setup.py b/setup.py index 0ca7196..40ca14f 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ "websocket-client", # Used for web socket integration testing ], "lint": [ - "black>=23.11.0,<24", # Auto-formatter and linter + "black>=23.12.0,<24", # Auto-formatter and linter "mypy>=1.7.1,<2", # Static type analyzer "types-setuptools", # Needed for mypy type shed "types-requests", # Needed for mypy type shed @@ -77,10 +77,10 @@ include_package_data=True, install_requires=[ "eth-ape>=0.7.0,<0.8", - "eth-pydantic-types", # Get eth-pydantic-types version from ape - "ethpm-types", # Get ethpm-types version from ape - "evm-trace", # Get evm-trace version from ape - "web3", # Get web3 version from ape + "eth-pydantic-types", # Use same version as eth-ape + "ethpm-types", # Use same version as eth-ape + "evm-trace", # Use same version as eth-ape + "web3", # Use same version as eth-ape "requests", ], python_requires=">=3.8,<4",