Skip to content

Commit b5777c6

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

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
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-flake8{4,5,6,7},build", experimental: False}
3535
- {python-version: "3.11", testenvs: "py311-flake8{4,5,6,7},build", experimental: False}
3636
- {python-version: "3.12", testenvs: "py312-flake8{5,6,7},build", experimental: False}
37-
- {python-version: "3.13", testenvs: "py313-dev-flake8{5,6,7},build", experimental: True}
37+
- {python-version: "3.13", testenvs: "py313-flake8{5,6,7},build", experimental: False}
3838
- {python-version: "pypy-3.7", testenvs: "pypy37-flake8{4,5},build", experimental: False}
3939
- {python-version: "pypy-3.8", testenvs: "pypy38-flake8{4,5,6,7},build", experimental: False}
4040
- {python-version: "pypy-3.9-v7.3.15", testenvs: "pypy39-flake8{4,5,6,7},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-flake8{4,5,6,7},build", experimental: False}
3636
- {python-version: "3.11", testenvs: "py311-flake8{4,5,6,7},build", experimental: False}
3737
- {python-version: "3.12", testenvs: "py312-flake8{5,6,7},build", experimental: False}
38-
- {python-version: "3.13", testenvs: "py313-dev-flake8{5,6,7},build", experimental: True}
38+
- {python-version: "3.13", testenvs: "py313-flake8{5,6,7},build", experimental: False}
3939
- {python-version: "pypy-3.7", testenvs: "pypy37-flake8{4,5},build", experimental: False}
4040
- {python-version: "pypy-3.8", testenvs: "pypy38-flake8{4,5,6,7},build", experimental: False}
4141
- {python-version: "pypy-3.9", testenvs: "pypy39-flake8{4,5,6,7},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-flake8{4,5,6,7},build", experimental: False}
3535
- {python-version: "3.11", os-ver: "14", testenvs: "py311-flake8{4,5,6,7},build", experimental: False}
3636
- {python-version: "3.12", os-ver: "14", testenvs: "py312-flake8{5,6,7},build", experimental: False}
37-
- {python-version: "3.13", os-ver: "14", testenvs: "py313-dev-flake8{5,6,7},build", experimental: True}
37+
- {python-version: "3.13", os-ver: "14", testenvs: "py313-flake8{5,6,7},build", experimental: False}
3838
- {python-version: "pypy-3.7", os-ver: "13", testenvs: "pypy37-flake8{4,5},build", experimental: False}
3939
- {python-version: "pypy-3.8", os-ver: "14", testenvs: "pypy38-flake8{4,5,6,7},build", experimental: False}
4040
- {python-version: "pypy-3.9", os-ver: "14", testenvs: "pypy39-flake8{4,5,6,7},build", experimental: True}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ base-classifiers = [
3838
"Topic :: Utilities",
3939
"Typing :: Typed",
4040
]
41-
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
41+
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",]
4242
python-implementations = [ "CPython", "PyPy",]
4343
platforms = [ "Windows", "macOS", "Linux",]
4444
license-key = "MIT"

tox.ini

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ envlist =
2929
py310-flake8{4,5,6,7}
3030
py311-flake8{4,5,6,7}
3131
py312-flake8{5,6,7}
32-
py313-dev-flake8{5,6,7}
32+
py313-flake8{5,6,7}
3333
pypy37-flake8{4,5}
3434
pypy38-flake8{4,5,6,7}
3535
pypy39-flake8{4,5,6,7}
@@ -51,7 +51,7 @@ test =
5151
py310-flake8{4,5,6,7}
5252
py311-flake8{4,5,6,7}
5353
py312-flake8{5,6,7}
54-
py313-dev-flake8{5,6,7}
54+
py313-flake8{5,6,7}
5555
pypy37-flake8{4,5}
5656
pypy38-flake8{4,5,6,7}
5757
pypy39-flake8{4,5,6,7}
@@ -78,12 +78,11 @@ setenv =
7878
PYTHONDEVMODE=1
7979
PIP_DISABLE_PIP_VERSION_CHECK=1
8080

81-
[testenv:py313-dev]
81+
[testenv:py313]
8282
download = True
8383
setenv =
8484
PYTHONDEVMODE=1
8585
PIP_DISABLE_PIP_VERSION_CHECK=1
86-
UNSAFE_PYO3_SKIP_VERSION_CHECK=1
8786

8887
[testenv:py312]
8988
download = True
@@ -250,6 +249,12 @@ setenv =
250249
PYTHONDEVMODE=1
251250
PIP_DISABLE_PIP_VERSION_CHECK=1
252251
252+
[testenv:py313-flake8{4,5,6,7}]
253+
download = True
254+
setenv =
255+
PYTHONDEVMODE=1
256+
PIP_DISABLE_PIP_VERSION_CHECK=1
257+
253258
[testenv:py313-dev-flake8{4,5,6,7}]
254259
download = True
255260
setenv =

0 commit comments

Comments
 (0)