Skip to content

Commit 5d96f51

Browse files
authored
Add Python3.12 support (#98)
1 parent 3b07395 commit 5d96f51

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.github/workflows/buildwheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
with:
5252
platforms: arm64
5353
- name: Build wheels
54-
uses: pypa/cibuildwheel@v2.12.1
54+
uses: pypa/cibuildwheel@v2.15.0
5555
env:
5656
CIBW_TEST_REQUIRES: "hypothesis"
5757
CIBW_TEST_COMMAND: "python {project}/test.py && python {project}/cydoctest.py"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ubuntu-latest, macos-latest, windows-latest]
12-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
12+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12.0-rc.1"]
1313
steps:
1414
- name: Set up the repository
1515
uses: actions/checkout@v3

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = '0.4.2'
62+
version = '0.4.3.dev1'
6363
# The full version, including alpha/beta/rc tags.
6464
release = version
6565

pyroaring/version.pxi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.4.2"
1+
__version__ = "0.4.3.dev1"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,5 +88,6 @@
8888
'Programming Language :: Python :: 3.9',
8989
'Programming Language :: Python :: 3.10',
9090
'Programming Language :: Python :: 3.11',
91+
'Programming Language :: Python :: 3.12',
9192
],
9293
)

0 commit comments

Comments
 (0)