Skip to content

Commit a2050e3

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

File tree

6 files changed

+11
-22
lines changed

6 files changed

+11
-22
lines changed

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
os: ['ubuntu-22.04', 'windows-2019']
23+
os: ['ubuntu-22.04', 'windows-2022']
2424
fail-fast: false
2525

2626
steps:

.github/workflows/python_ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ permissions:
1818

1919
jobs:
2020
tests:
21-
name: "windows-2019 / Python ${{ matrix.config.python-version }}"
22-
runs-on: "windows-2019"
21+
name: "windows-2022 / Python ${{ matrix.config.python-version }}"
22+
runs-on: "windows-2022"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
2525
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.7,pypy-3.8,pypy-3.9'
@@ -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
@@ -30,7 +30,7 @@ base-classifiers = [
3030
"Topic :: Software Development :: Libraries :: Python Modules",
3131
"Typing :: Typed",
3232
]
33-
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
33+
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",]
3434
python-implementations = [ "CPython", "PyPy",]
3535
platforms = [ "Windows", "macOS", "Linux",]
3636
license-key = "MIT"

tox.ini

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ envlist =
2828
py310
2929
py311
3030
py312
31-
py313-dev
31+
py313
3232
pypy37
3333
pypy38
3434
pypy39
@@ -43,17 +43,7 @@ requires =
4343
virtualenv!=20.16.0
4444

4545
[envlists]
46-
test =
47-
py37
48-
py38
49-
py39
50-
py310
51-
py311
52-
py312
53-
py313-dev
54-
pypy37
55-
pypy38
56-
pypy39
46+
test = py37, py38, py39, py310, py311, py312, py313, pypy37, pypy38, pypy39
5747
qa = mypy, lint
5848
cov = py39, coverage
5949

@@ -62,12 +52,11 @@ setenv =
6252
PYTHONDEVMODE=1
6353
PIP_DISABLE_PIP_VERSION_CHECK=1
6454

65-
[testenv:py313-dev]
55+
[testenv:py313]
6656
download = True
6757
setenv =
6858
PYTHONDEVMODE=1
6959
PIP_DISABLE_PIP_VERSION_CHECK=1
70-
UNSAFE_PYO3_SKIP_VERSION_CHECK=1
7160

7261
[testenv:py312]
7362
download = True
@@ -132,7 +121,7 @@ deps =
132121
commands = python3 -m flake8_rst_docstrings_sphinx dict2css tests --allow-toolbox {posargs}
133122

134123
[testenv:perflint]
135-
basepython = python3.8
124+
basepython = python3.9
136125
changedir = {toxinidir}
137126
ignore_errors = True
138127
skip_install = True

0 commit comments

Comments
 (0)