Skip to content

Commit 8c82e5a

Browse files
Updated files with 'repo_helper'.
1 parent 4e80f6e commit 8c82e5a

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
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-20.04', 'windows-2019']
23+
os: ['ubuntu-22.04', 'windows-2019']
2424
fail-fast: false
2525

2626
steps:

.github/workflows/python_ci_linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ permissions:
1919

2020
jobs:
2121
tests:
22-
name: "ubuntu-20.04 / Python ${{ matrix.config.python-version }}"
23-
runs-on: "ubuntu-20.04"
22+
name: "ubuntu-22.04 / Python ${{ matrix.config.python-version }}"
23+
runs-on: "ubuntu-22.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
2626
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'
@@ -84,7 +84,7 @@ jobs:
8484

8585
Coverage:
8686
needs: tests
87-
runs-on: "ubuntu-20.04"
87+
runs-on: "ubuntu-22.04"
8888
steps:
8989
- name: Checkout 🛎️
9090
uses: "actions/checkout@v4"
@@ -133,7 +133,7 @@ jobs:
133133
Deploy:
134134
needs: tests
135135

136-
runs-on: "ubuntu-20.04"
136+
runs-on: "ubuntu-22.04"
137137
steps:
138138
- name: Checkout 🛎️
139139
uses: "actions/checkout@v4"

tox.ini

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
# * tox
44
# * envlists
55
# * testenv:.package
6-
# * testenv:py313-dev
76
# * testenv:py313
87
# * testenv:py312-dev
98
# * testenv:py312
@@ -52,6 +51,13 @@ setenv =
5251
PYTHONDEVMODE=1
5352
PIP_DISABLE_PIP_VERSION_CHECK=1
5453

54+
[testenv:py313]
55+
download = True
56+
setenv =
57+
PYTHONDEVMODE=1
58+
PIP_DISABLE_PIP_VERSION_CHECK=1
59+
UNSAFE_PYO3_SKIP_VERSION_CHECK=1
60+
5561
[testenv:py312]
5662
download = True
5763
setenv =

0 commit comments

Comments
 (0)