Skip to content

Commit ff80ee5

Browse files
committed
Python 3.11 and update some CI tools
1 parent 88a3491 commit ff80ee5

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
git config --global core.autocrlf false
2626
git config --global core.eol lf
2727
28-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v3
2929
with:
3030
fetch-depth: 0
3131
submodules: recursive
@@ -35,7 +35,7 @@ jobs:
3535
if: runner.os == 'Linux'
3636

3737
- name: Build wheels
38-
uses: pypa/cibuildwheel@v2.3.0
38+
uses: pypa/cibuildwheel@v2.11.2
3939
env:
4040
CIBW_ARCHS: "${{ matrix.archs }}"
4141
CIBW_BUILD: "${{ matrix.build && '*-' || ''}}${{ matrix.build }}*"
@@ -53,13 +53,13 @@ jobs:
5353
matrix:
5454
python-version: ['3.10']
5555
steps:
56-
- uses: actions/checkout@v2
56+
- uses: actions/checkout@v3
5757
with:
5858
fetch-depth: 0
5959
submodules: recursive
6060

6161
- name: Set up Python ${{ matrix.python-version }}
62-
uses: actions/setup-python@v2
62+
uses: actions/setup-python@v4
6363
with:
6464
python-version: ${{ matrix.python-version }}
6565

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
11+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
with:
1616
fetch-depth: 0
1717
submodules: recursive
1818

1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v2
20+
uses: actions/setup-python@v4
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def readfile(filename):
5454
'Programming Language :: Python :: 3.8',
5555
'Programming Language :: Python :: 3.9',
5656
'Programming Language :: Python :: 3.10',
57+
'Programming Language :: Python :: 3.11',
5758
'Programming Language :: Python :: Implementation :: CPython',
5859
],
5960
python_requires=">=3.6",

0 commit comments

Comments
 (0)