Skip to content

Commit 97959fa

Browse files
remove pypy3.10, fix linux build
1 parent 93c5503 commit 97959fa

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: macos-15-intel
2121
strategy:
2222
matrix:
23-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', 'pypy-3.11', 'pypy-3.10' ]
23+
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', 'pypy-3.11' ]
2424
raylib-platform: ['Desktop', 'SDL']
2525
env:
2626
MACOSX_DEPLOYMENT_TARGET: '10.13'
@@ -358,8 +358,8 @@ jobs:
358358
- name: Publish to PyPI
359359
if: ${{ inputs.publish_to_pypi == true }}
360360
run: |
361-
python3 -m pip install twine
362-
python3 -m twine upload -u __token__ -p ${{ secrets.PYPI_KEY }} wheelhouse/*.whl
361+
python3.13 -m pip install twine
362+
python3.13 -m twine upload -u __token__ -p ${{ secrets.PYPI_KEY }} wheelhouse/*.whl
363363
364364
- name: Upload build Artifact wheel
365365
uses: actions/upload-artifact@v4
@@ -481,8 +481,8 @@ jobs:
481481
- name: Publish to PyPI
482482
if: ${{ inputs.publish_to_pypi == true }}
483483
run: |
484-
python3 -m pip install twine
485-
python3 -m twine upload -u __token__ -p ${{ secrets.PYPI_KEY }} wheelhouse/*.whl
484+
python3.13 -m pip install twine
485+
python3.13 -m twine upload -u __token__ -p ${{ secrets.PYPI_KEY }} wheelhouse/*.whl
486486
487487
- name: Upload build Artifact wheel
488488
uses: actions/upload-artifact@v4
@@ -618,7 +618,7 @@ jobs:
618618
# You can use PyPy versions in python-version.
619619
# For example, pypy2 and pypy3
620620
matrix:
621-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', 'pypy-3.11', 'pypy-3.10' ]
621+
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', 'pypy-3.11' ]
622622
raylib-platform: ['Desktop', 'SDL', 'SDL_SOFT']
623623
steps:
624624
- uses: actions/checkout@v4

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.6.0.0-dev2"
1+
__version__ = "5.6.0.0-dev3"

0 commit comments

Comments
 (0)