Skip to content

Commit c381afc

Browse files
authored
Merge pull request #129 from gliptak/python1
Add Python 3.11 to GHA
2 parents 73c7f55 + dfacef8 commit c381afc

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

.github/workflows/pypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: ${{ matrix.python-version }}
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020

2121
- name: Setup Python
2222
uses: actions/setup-python@v5

.github/workflows/wheel.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
sdist:
1111
runs-on: ubuntu-latest
1212

13-
name: Python 3.10
13+
name: Python 3.11
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1717

1818
- name: Setup Python
1919
uses: actions/setup-python@v5
2020
with:
21-
python-version: "3.10"
21+
python-version: "3.11"
2222
architecture: x64
2323

2424
- name: Install test dependencies
@@ -51,7 +51,7 @@ jobs:
5151
strategy:
5252
fail-fast: false
5353
matrix:
54-
os: [ubuntu-20.04, macos-11, windows-2019]
54+
os: [ubuntu-20.04, macos-12, windows-2019]
5555
architecture: ['x64']
5656
linux_archs: ["auto s390x"]
5757
include:
@@ -81,12 +81,12 @@ jobs:
8181
CIBW_ARCHS_MACOS: x86_64 universal2
8282
CIBW_TEST_SKIP: "*_arm64 *_universal2:arm64"
8383
steps:
84-
- uses: actions/checkout@v2
84+
- uses: actions/checkout@v4
8585

8686
- name: Setup Python
8787
uses: actions/setup-python@v5
8888
with:
89-
python-version: "3.10"
89+
python-version: "3.11"
9090
architecture: ${{ matrix.architecture }}
9191

9292
- name: Set up QEMU

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,12 @@
6363
'Operating System :: MacOS :: MacOS X',
6464
# 'Operating System :: Microsoft :: Windows', -- Not tested yet
6565
'Operating System :: POSIX',
66-
'Programming Language :: Python :: 2.7',
6766
'Programming Language :: Python :: 3',
68-
'Programming Language :: Python :: 3.5',
69-
'Programming Language :: Python :: 3.6',
70-
'Programming Language :: Python :: 3.7',
7167
'Programming Language :: Python :: 3.8',
7268
'Programming Language :: Python :: 3.9',
73-
'Programming Language :: Python :: 3.10'
69+
'Programming Language :: Python :: 3.10',
70+
'Programming Language :: Python :: 3.11',
71+
'Programming Language :: Python :: 3.12',
7472
],
7573
packages=packages,
7674
install_requires=install_requires,

0 commit comments

Comments
 (0)