Skip to content

Commit

Permalink
add build for python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
irmen committed Dec 14, 2024
1 parent 589f612 commit 74b557f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v3
Expand Down
10 changes: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,16 @@ docs:

win_wheels: test
cmd /C del /q dist\*
py -3.7-64 setup.py clean --all
py -3.7-64 setup.py bdist_wheel
py -3.8-64 setup.py clean --all
py -3.8-64 setup.py bdist_wheel
py -3.9-64 setup.py clean --all
py -3.9-64 setup.py bdist_wheel
py -3.10-64 setup.py clean --all
py -3.10-64 setup.py bdist_wheel
py -3.11-64 setup.py clean --all
py -3.11-64 setup.py bdist_wheel
py -3.12-64 setup.py clean --all
py -3.12-64 setup.py bdist_wheel
py -3.13-64 setup.py clean --all
py -3.13-64 setup.py bdist_wheel

linux_wheel: test
rm -f dist/* *.so
Expand Down

0 comments on commit 74b557f

Please sign in to comment.