Skip to content

Commit

Permalink
chore: another update
Browse files Browse the repository at this point in the history
  • Loading branch information
NotPeopling2day committed Dec 11, 2023
1 parent 3108e43 commit 216cf46
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repos:
- id: flake8

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.7.0
rev: v1.7.1
hooks:
- id: mypy
additional_dependencies: [types-PyYAML, types-requests, pydantic, types-setuptools]
Expand Down
3 changes: 2 additions & 1 deletion ape_alchemy/provider.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from typing import Any, Dict, Optional

from ape.api import ReceiptAPI, TransactionAPI, UpstreamProvider, Web3Provider
from ape.api import ReceiptAPI, TransactionAPI, UpstreamProvider
from ape.exceptions import (
APINotImplementedError,
ContractLogicError,
Expand All @@ -10,6 +10,7 @@
)
from ape.logging import logger
from ape.types import CallTreeNode
from ape_ethereum.provider import Web3Provider
from eth_pydantic_types import HexBytes
from eth_typing import HexStr
from evm_trace import (
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
"ape-arbitrum", # Needed for testing Arbitrum integration
"ape-base", # Needed for testing Base integration
"ape-optimism", # Needed for testing Optimism integration
"ape-polygon", # Neblack .eded for testing Polygon integration
"ape-polygon", # Needed for testing Polygon integration
"pytest>=6.0", # Core testing package
"pytest-xdist", # multi-process runner
"pytest-xdist", # Multi-process runner
"pytest-cov", # Coverage analyzer plugin
"pytest-mock", # For creating mocks
"hypothesis>=6.2.0,<7.0", # Strategy-based fuzzer
"websocket-client", # Used for web socket integration testing
],
"lint": [
"black>=23.11.0,<24", # Auto-formatter and linter
"mypy>=1.7.0,<2", # Static type analyzer
"mypy>=1.7.1,<2", # Static type analyzer
"types-requests", # Needed for mypy type shed
"types-setuptools", # Needed for mypy type shed
"flake8>=6.1.0,<7", # Style linter
Expand Down Expand Up @@ -75,9 +75,9 @@
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 version from ape
"evm_trace", # Get evm_trace version from ape
"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
"requests",
],
Expand Down

0 comments on commit 216cf46

Please sign in to comment.