Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: bumping eth-ape version #8

Merged
merged 3 commits into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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