File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Ecosystem Plugin for Scroll support in Ape.
4
4
5
5
## Dependencies
6
6
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
8
8
9
9
## Installation
10
10
Original file line number Diff line number Diff line change 1
1
from ape import plugins
2
2
from ape .api import NetworkAPI , create_network_type
3
3
from ape .api .networks import LOCAL_NETWORK_NAME
4
- from ape_geth import GethProvider
4
+ from ape_node import Node
5
5
from ape_test import LocalProvider
6
6
7
7
from .ecosystem import NETWORKS , Scroll , ScrollConfig
@@ -30,6 +30,6 @@ def networks():
30
30
@plugins .register (plugins .ProviderPlugin )
31
31
def providers ():
32
32
for network_name in NETWORKS :
33
- yield "scroll" , network_name , GethProvider
33
+ yield "scroll" , network_name , Node
34
34
35
35
yield "scroll" , LOCAL_NETWORK_NAME , LocalProvider
Original file line number Diff line number Diff line change 67
67
url = "https://github.com/theref/ape-scroll" ,
68
68
include_package_data = True ,
69
69
install_requires = [
70
- "eth-ape>=0.6.0 ,<0.7 " ,
70
+ "eth-ape>=0.8.1 ,<0.9 " ,
71
71
],
72
- python_requires = ">=3.8 ,<4" ,
72
+ python_requires = ">=3.9 ,<4" ,
73
73
extras_require = extras_require ,
74
74
py_modules = ["ape_scroll" ],
75
75
license = "Apache-2.0" ,
85
85
"Operating System :: MacOS" ,
86
86
"Operating System :: POSIX" ,
87
87
"Programming Language :: Python :: 3" ,
88
- "Programming Language :: Python :: 3.8" ,
89
88
"Programming Language :: Python :: 3.9" ,
90
89
"Programming Language :: Python :: 3.10" ,
90
+ "Programming Language :: Python :: 3.11" ,
91
+ "Programming Language :: Python :: 3.12" ,
91
92
],
92
93
)
You can’t perform that action at this time.
0 commit comments