Skip to content

Commit 74b557f

Browse files
committed
add build for python 3.13
1 parent 589f612 commit 74b557f

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
strategy:
1919
matrix:
20-
python-version: ["3.9", "3.10", "3.11", "3.12"]
20+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2121

2222
steps:
2323
- uses: actions/checkout@v3

Makefile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,16 @@ docs:
2121

2222
win_wheels: test
2323
cmd /C del /q dist\*
24-
py -3.7-64 setup.py clean --all
25-
py -3.7-64 setup.py bdist_wheel
26-
py -3.8-64 setup.py clean --all
27-
py -3.8-64 setup.py bdist_wheel
2824
py -3.9-64 setup.py clean --all
2925
py -3.9-64 setup.py bdist_wheel
3026
py -3.10-64 setup.py clean --all
3127
py -3.10-64 setup.py bdist_wheel
28+
py -3.11-64 setup.py clean --all
29+
py -3.11-64 setup.py bdist_wheel
30+
py -3.12-64 setup.py clean --all
31+
py -3.12-64 setup.py bdist_wheel
32+
py -3.13-64 setup.py clean --all
33+
py -3.13-64 setup.py bdist_wheel
3234

3335
linux_wheel: test
3436
rm -f dist/* *.so

0 commit comments

Comments
 (0)