Skip to content

Commit bab7173

Browse files
Updated files with 'repo_helper'. (#63)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 24f5aa3 commit bab7173

File tree

5 files changed

+7
-18
lines changed

5 files changed

+7
-18
lines changed

.github/workflows/python_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3535
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3636
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
37-
- {python-version: "3.13", testenvs: "py313-dev,build", experimental: True}
37+
- {python-version: "3.13", testenvs: "py313,build", experimental: False}
3838
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
3939
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
4040
- {python-version: "pypy-3.9-v7.3.15", testenvs: "pypy39,build", experimental: True}

.github/workflows/python_ci_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
3636
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
3737
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
38-
- {python-version: "3.13", testenvs: "py313-dev,build", experimental: True}
38+
- {python-version: "3.13", testenvs: "py313,build", experimental: False}
3939
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
4040
- {python-version: "pypy-3.8", testenvs: "pypy38,build", experimental: False}
4141
- {python-version: "pypy-3.9", testenvs: "pypy39,build", experimental: True}

.github/workflows/python_ci_macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- {python-version: "3.10", os-ver: "14", testenvs: "py310,build", experimental: False}
3535
- {python-version: "3.11", os-ver: "14", testenvs: "py311,build", experimental: False}
3636
- {python-version: "3.12", os-ver: "14", testenvs: "py312,build", experimental: False}
37-
- {python-version: "3.13", os-ver: "14", testenvs: "py313-dev,build", experimental: True}
37+
- {python-version: "3.13", os-ver: "14", testenvs: "py313,build", experimental: False}
3838
- {python-version: "pypy-3.7", os-ver: "13", testenvs: "pypy37,build", experimental: False}
3939
- {python-version: "pypy-3.8", os-ver: "14", testenvs: "pypy38,build", experimental: False}
4040
- {python-version: "pypy-3.9", os-ver: "14", testenvs: "pypy39,build", experimental: True}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ base-classifiers = [
3636
"Intended Audience :: Developers",
3737
"Typing :: Typed",
3838
]
39-
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
39+
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",]
4040
python-implementations = [ "CPython", "PyPy",]
4141
platforms = [ "Windows", "macOS", "Linux",]
4242
license-key = "MIT"

tox.ini

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ envlist =
2626
py310
2727
py311
2828
py312
29-
py313-dev
29+
py313
3030
pypy37
3131
pypy38
3232
pypy39
@@ -41,17 +41,7 @@ requires =
4141
virtualenv!=20.16.0
4242

4343
[envlists]
44-
test =
45-
py37
46-
py38
47-
py39
48-
py310
49-
py311
50-
py312
51-
py313-dev
52-
pypy37
53-
pypy38
54-
pypy39
44+
test = py37, py38, py39, py310, py311, py312, py313, pypy37, pypy38, pypy39
5545
qa = mypy, lint
5646

5747
[testenv]
@@ -69,12 +59,11 @@ setenv =
6959
PYTHONDEVMODE=1
7060
PIP_DISABLE_PIP_VERSION_CHECK=1
7161

72-
[testenv:py313-dev]
62+
[testenv:py313]
7363
download = True
7464
setenv =
7565
PYTHONDEVMODE=1
7666
PIP_DISABLE_PIP_VERSION_CHECK=1
77-
UNSAFE_PYO3_SKIP_VERSION_CHECK=1
7867

7968
[testenv:py312]
8069
download = True

0 commit comments

Comments
 (0)