Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/onpush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
check:
strategy:
matrix:
python-ver: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-22.04, macos-latest]
python-ver: ["3.10", "3.11", "3.12", "3.13", "3.14"]
os: [ubuntu-24.04, macos-latest]

runs-on: ${{matrix.os }}

Expand Down
7 changes: 0 additions & 7 deletions autonity/contracts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,3 @@
Each module consists of the contract binding class, the contract ABI, and ports of
Solidity structures and enumerations.
"""

import warnings

# Suppress warnings raised by `plum` about not being able to resolve types
# from `eth_typing`; the dispatch works as expected
warnings.filterwarnings("ignore", message="Could not resolve the type hint")
warnings.filterwarnings("ignore", message="Could not determine whether .+ is faithful")
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ readme = "README.md"
license = "MIT"
keywords = ["autonity", "web3", "rpc", "client", "library"]
dynamic = ["version"]
requires-python = ">=3.9"
dependencies = ["web3==7.12.0", "plum-dispatch==2.5.4", "semver==3.0.2"]
requires-python = ">=3.10"
dependencies = ["web3>=7.12.0", "semver==3.0.2"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]

[project.urls]
Expand All @@ -42,7 +42,7 @@ dependencies = ["pyabigen@git+https://github.com/clearmatics/pyabigen@v0.2.15"]
dependencies = ["pytest"]

[[tool.hatch.envs.test.matrix]]
python = ["3.9", "3.10", "3.11", "3.12", "3.13"]
python = ["3.10", "3.11", "3.12", "3.13", "3.14"]

[tool.hatch.envs.test.scripts]
all = "pytest -v {args:tests}"
Expand Down
Loading