Skip to content

Commit

Permalink
feat: bumping eth-ape version (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnson2427 authored Jun 4, 2024
1 parent ea2fe56 commit 6060cee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

extras_require = {
"test": [ # `test` GitHub Action jobs uses this
"pytest>=6.0,<8.0", # Core testing package
"pytest>=8.0,<9.0", # Core testing package
"pytest-xdist", # multi-process runner
"pytest-cov", # Coverage analyzer plugin
"hypothesis>=6.2.0,<7.0", # Strategy-based fuzzer
Expand Down Expand Up @@ -55,7 +55,7 @@
install_requires=[
"importlib-metadata ; python_version<'3.8'",
"boto3>=1.34.79,<2",
"eth-ape>=0.7.14,<0.8",
"eth-ape>=0.8.2,<0.9",
"ecdsa>=0.19.0,<1",
], # NOTE: Add 3rd party libraries here
entry_points={"ape_cli_subcommands": ["ape_aws=ape_aws._cli:cli"]},
Expand All @@ -75,8 +75,8 @@
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)
2 changes: 1 addition & 1 deletion tests/test_accounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def string_message():

@pytest.fixture(scope="session")
def aws_account_container():
return AwsAccountContainer(data_folder="./", account_type=KmsAccount)
return AwsAccountContainer(name="ape-aws", account_type=KmsAccount)


@pytest.fixture(scope="session")
Expand Down

0 comments on commit 6060cee

Please sign in to comment.