Skip to content

Commit 278b1be

Browse files
chore: pep-625 compliance and python 3.13 update (#98)
1 parent 665bebe commit 278b1be

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
strategy:
6464
matrix:
6565
os: [ubuntu-latest, macos-latest] # eventually add `windows-latest`
66-
python-version: [3.9, "3.10", "3.11", "3.12"]
66+
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
6767

6868
steps:
6969
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=72.2.0", "wheel", "setuptools_scm[toml]>=5.0"]
2+
requires = ["setuptools>=75.6.0", "wheel", "setuptools_scm[toml]>=5.0"]
33

44
[tool.mypy]
55
exclude = "build/"
@@ -15,7 +15,7 @@ write_to = "ape_infura/version.py"
1515

1616
[tool.black]
1717
line-length = 100
18-
target-version = ['py39', 'py310', 'py311', 'py312']
18+
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']
1919
include = '\.pyi?$'
2020

2121
[tool.pytest.ini_options]

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"sphinx-plausible>=0.1.2,<0.2",
4242
],
4343
"release": [ # `release` GitHub Action job uses this
44-
"setuptools>=72.2.0", # Installation tool
44+
"setuptools>=75.6.0", # Installation tool
4545
"setuptools-scm", # Installation tool
4646
"wheel", # Packaging tool
4747
"twine", # Package upload tool
@@ -102,5 +102,6 @@
102102
"Programming Language :: Python :: 3.10",
103103
"Programming Language :: Python :: 3.11",
104104
"Programming Language :: Python :: 3.12",
105+
"Programming Language :: Python :: 3.13",
105106
],
106107
)

0 commit comments

Comments
 (0)