Skip to content

Commit 7b05b3a

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

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ base-classifiers = [
3333
"Topic :: Software Development :: Documentation",
3434
"Typing :: Typed",
3535
]
36-
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12",]
36+
python-versions = [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",]
3737
python-implementations = [ "CPython", "PyPy",]
3838
platforms = [ "Windows", "macOS", "Linux",]
3939
license-key = "MIT"
@@ -124,7 +124,7 @@ autodoc_exclude_members = [
124124
]
125125

126126
[tool.mypy]
127-
python_version = "3.8"
127+
python_version = "3.9"
128128
namespace_packages = true
129129
check_untyped_defs = true
130130
warn_unused_ignores = true

tox.ini

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ envlist =
2929
py310
3030
py311
3131
py312
32-
py313-dev
32+
py313
3333
pypy37
3434
pypy38
3535
pypy39
@@ -44,17 +44,7 @@ requires =
4444
virtualenv!=20.16.0
4545

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

@@ -73,12 +63,11 @@ setenv =
7363
PYTHONDEVMODE=1
7464
PIP_DISABLE_PIP_VERSION_CHECK=1
7565

76-
[testenv:py313-dev]
66+
[testenv:py313]
7767
download = True
7868
setenv =
7969
PYTHONDEVMODE=1
8070
PIP_DISABLE_PIP_VERSION_CHECK=1
81-
UNSAFE_PYO3_SKIP_VERSION_CHECK=1
8271

8372
[testenv:py312]
8473
download = True

0 commit comments

Comments
 (0)