Skip to content

Commit 8fe518a

Browse files
authored
Merge pull request #1 from Barabazs/chore/version-restriction
feat: support ape >=0.8.x
2 parents 8c5c27e + 26862fa commit 8fe518a

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Ecosystem Plugin for Scroll support in Ape.
44

55
## Dependencies
66

7-
- [python3](https://www.python.org/downloads) version 3.8 or greater, python3-dev
7+
- [python3](https://www.python.org/downloads) version 3.9 or greater, python3-dev
88

99
## Installation
1010

ape_scroll/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from ape import plugins
22
from ape.api import NetworkAPI, create_network_type
33
from ape.api.networks import LOCAL_NETWORK_NAME
4-
from ape_geth import GethProvider
4+
from ape_node import Node
55
from ape_test import LocalProvider
66

77
from .ecosystem import NETWORKS, Scroll, ScrollConfig
@@ -30,6 +30,6 @@ def networks():
3030
@plugins.register(plugins.ProviderPlugin)
3131
def providers():
3232
for network_name in NETWORKS:
33-
yield "scroll", network_name, GethProvider
33+
yield "scroll", network_name, Node
3434

3535
yield "scroll", LOCAL_NETWORK_NAME, LocalProvider

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@
6767
url="https://github.com/theref/ape-scroll",
6868
include_package_data=True,
6969
install_requires=[
70-
"eth-ape>=0.6.0,<0.7",
70+
"eth-ape>=0.8.1,<0.9",
7171
],
72-
python_requires=">=3.8,<4",
72+
python_requires=">=3.9,<4",
7373
extras_require=extras_require,
7474
py_modules=["ape_scroll"],
7575
license="Apache-2.0",
@@ -85,8 +85,9 @@
8585
"Operating System :: MacOS",
8686
"Operating System :: POSIX",
8787
"Programming Language :: Python :: 3",
88-
"Programming Language :: Python :: 3.8",
8988
"Programming Language :: Python :: 3.9",
9089
"Programming Language :: Python :: 3.10",
90+
"Programming Language :: Python :: 3.11",
91+
"Programming Language :: Python :: 3.12",
9192
],
9293
)

0 commit comments

Comments
 (0)