From 9eba2a2db27716d5a0d78f4b054e0bb7b59e94eb Mon Sep 17 00:00:00 2001 From: unparalleled-js Date: Mon, 20 Dec 2021 17:25:09 -0600 Subject: [PATCH 1/5] chore: prepare for beta --- README.md | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 561b784..f3f4a6e 100644 --- a/README.md +++ b/README.md @@ -36,8 +36,8 @@ ape console --network ethereum:goerli:alchemy ## Development -This project is in early development and should be considered an alpha. -Things might not work, breaking changes are likely. +This project is in development and should be considered a beta. +Things might not be in their final state and breaking changes may occur. Comments, questions, criticisms and pull requests are welcomed. ## License diff --git a/setup.py b/setup.py index 52b80a8..a14c649 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ url="https://github.com/ApeWorX/ape-alchemy", include_package_data=True, install_requires=[ - "eth-ape>=0.1.0a29", + "eth-ape>=0.1.0b2", "importlib-metadata ; python_version<'3.8'", ], python_requires=">=3.7,<4", From 4548ba45432b9dd9135116ebf27f689815aa0005 Mon Sep 17 00:00:00 2001 From: unparalleled-js Date: Mon, 20 Dec 2021 17:25:54 -0600 Subject: [PATCH 2/5] fix: add missing comment from template --- .github/PULL_REQUEST_TEMPLATE.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index d3716da..1d93a39 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,5 +1,6 @@ ### What I did + fixes: # ### How I did it From b12e27e4e3882485488f362044318a88612f48ac Mon Sep 17 00:00:00 2001 From: unparalleled-js Date: Mon, 20 Dec 2021 18:07:25 -0600 Subject: [PATCH 3/5] fix: update flake8 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a14c649..64d2788 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ "lint": [ "black>=21.10b0,<22.0", # auto-formatter and linter "mypy>=0.910,<1.0", # Static type analyzer - "flake8>=3.8.3,<4.0", # Style linter + "flake8>=3.9.2,<4.0", # Style linter "isort>=5.9.3,<6.0", # Import sorting linter ], "release": [ # `release` GitHub Action job uses this From d2aed80873300a502b70234f54780a84a178d5eb Mon Sep 17 00:00:00 2001 From: unparalleled-js Date: Mon, 20 Dec 2021 18:21:46 -0600 Subject: [PATCH 4/5] fix: list web3 in project requirements --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 64d2788..e4d9d00 100644 --- a/setup.py +++ b/setup.py @@ -55,6 +55,7 @@ include_package_data=True, install_requires=[ "eth-ape>=0.1.0b2", + "web3>=5.25.0,<6.0.0", "importlib-metadata ; python_version<'3.8'", ], python_requires=">=3.7,<4", From 3defb58b9ee85de12e243b217426ab5d1127f800 Mon Sep 17 00:00:00 2001 From: unparalleled-js Date: Mon, 20 Dec 2021 19:06:42 -0600 Subject: [PATCH 5/5] fix: pin commitizen --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e4d9d00..78252ba 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ "twine", # Package upload tool ], "dev": [ - "commitizen", # Manage commits and publishing releases + "commitizen>=2.19,<2.20", # Manage commits and publishing releases "pre-commit", # Ensure that linters are run prior to commiting "pytest-watch", # `ptw` test watcher/runner "IPython", # Console for interacting