Skip to content

Commit 24d69c5

Browse files
authored
PYTHON-3506 Python 3.11 Support for BsonJS (#45)
1 parent a0b5c76 commit 24d69c5

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/release-python.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Build CPython ${{ matrix.python-version }}-${{ matrix.os }}
1212
steps:
1313
- uses: actions/checkout@v2
14-
- uses: pypa/cibuildwheel@v2.3.1
14+
- uses: pypa/cibuildwheel@v2.11.2
1515
env:
1616
CIBW_ARCHS_MACOS: x86_64 universal2
1717
CIBW_TEST_SKIP: '*universal2:arm64'
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
matrix:
2929
os: [macos-latest, windows-2019]
30-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
30+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
3131
name: Test CPython ${{ matrix.python-version }}-${{ matrix.os }}
3232
steps:
3333
- name: Setup Python
@@ -54,7 +54,7 @@ jobs:
5454
os: [ubuntu-latest]
5555
container: ['manylinux2014_i686', 'manylinux2014_x86_64']
5656
python-version: ['cp36-cp36m', 'cp37-cp37m', 'cp38-cp38',
57-
'cp39-cp39', 'cp310-cp310']
57+
'cp39-cp39', 'cp310-cp310', 'cp311-cp311']
5858
name: Test CPython ${{ matrix.python-version }}-${{ matrix.container }}
5959
steps:
6060
- name: Download a previously created wheel

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [macos-latest, ubuntu-18.04, windows-2019]
12-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
12+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
1313

1414
steps:
1515
- uses: actions/checkout@v2

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
"Programming Language :: Python :: 3.8",
6161
"Programming Language :: Python :: 3.9",
6262
"Programming Language :: Python :: 3.10",
63+
"Programming Language :: Python :: 3.11",
6364
"Programming Language :: Python :: Implementation :: CPython"],
6465
ext_modules=[
6566
Extension(

0 commit comments

Comments
 (0)