Skip to content

Commit

Permalink
Merge pull request #1 from Barabazs/chore/version-restriction
Browse files Browse the repository at this point in the history
feat: support ape >=0.8.x
  • Loading branch information
theref authored Jun 20, 2024
2 parents 8c5c27e + 26862fa commit 8fe518a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Ecosystem Plugin for Scroll support in Ape.

## Dependencies

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

## Installation

Expand Down
4 changes: 2 additions & 2 deletions ape_scroll/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from ape import plugins
from ape.api import NetworkAPI, create_network_type
from ape.api.networks import LOCAL_NETWORK_NAME
from ape_geth import GethProvider
from ape_node import Node
from ape_test import LocalProvider

from .ecosystem import NETWORKS, Scroll, ScrollConfig
Expand Down Expand Up @@ -30,6 +30,6 @@ def networks():
@plugins.register(plugins.ProviderPlugin)
def providers():
for network_name in NETWORKS:
yield "scroll", network_name, GethProvider
yield "scroll", network_name, Node

yield "scroll", LOCAL_NETWORK_NAME, LocalProvider
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@
url="https://github.com/theref/ape-scroll",
include_package_data=True,
install_requires=[
"eth-ape>=0.6.0,<0.7",
"eth-ape>=0.8.1,<0.9",
],
python_requires=">=3.8,<4",
python_requires=">=3.9,<4",
extras_require=extras_require,
py_modules=["ape_scroll"],
license="Apache-2.0",
Expand All @@ -85,8 +85,9 @@
"Operating System :: MacOS",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"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",
],
)

0 comments on commit 8fe518a

Please sign in to comment.