-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update CI with python 3.13 and raspberry pi builds (#130)
- Loading branch information
1 parent
e08d9d4
commit bdc4926
Showing
3 changed files
with
44 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
runs-on: macos-11 | ||
strategy: | ||
matrix: | ||
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10' ] | ||
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13.0-beta - 3.13.0', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10' ] | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
@@ -51,7 +51,7 @@ jobs: | |
- name: Build raylib-python-cffi | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip3 install cffi | ||
pip3 install "cffi>=1.17.0rc1" | ||
pip3 install wheel | ||
pip3 install setuptools | ||
python setup.py bdist_wheel --plat-name macosx_10_15_x86_64 | ||
|
@@ -166,7 +166,7 @@ jobs: | |
# You can use PyPy versions in python-version. | ||
# For example, pypy2 and pypy3 | ||
matrix: | ||
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10' ] | ||
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13.0-beta - 3.13.0', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10' ] | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
@@ -200,7 +200,7 @@ jobs: | |
- name: Build raylib-python-cffi | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip3 install cffi | ||
pip3 install "cffi>=1.17.0rc1" | ||
pip3 install wheel | ||
pip3 install setuptools | ||
python setup.py bdist_wheel --plat-name manylinux2014_x86_64 | ||
|
@@ -250,7 +250,7 @@ jobs: | |
# You can use PyPy versions in python-version. | ||
# For example, pypy2 and pypy3 | ||
matrix: | ||
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.7', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10' ] | ||
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13.0-beta - 3.13.0', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10' ] | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
|
@@ -282,7 +282,7 @@ jobs: | |
- name: Build raylib-python-cffi | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip3 install cffi | ||
pip3 install "cffi>=1.17.0rc1" | ||
pip3 install wheel | ||
pip3 install setuptools | ||
del raylib\dynamic\*.so* >nul 2>&1 | ||
|
@@ -311,7 +311,7 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
# Version range or exact version of a Python version to use, using SemVer's version range syntax. | ||
python-version: '3.10' | ||
python-version: '3.12' | ||
# The target architecture (x86, x64) of the Python interpreter. | ||
architecture: x64 | ||
|
||
|
@@ -334,7 +334,7 @@ jobs: | |
- name: Build raylib-python-cffi | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip3 install cffi | ||
pip3 install "cffi>=1.17.0rc1" | ||
pip3 install wheel | ||
pip3 install setuptools | ||
python setup.py sdist | ||
|
@@ -358,14 +358,14 @@ jobs: | |
uses: actions/[email protected] | ||
with: | ||
# Version range or exact version of a Python version to use, using SemVer's version range syntax. | ||
python-version: '3.10' | ||
python-version: '3.12' | ||
# The target architecture (x86, x64) of the Python interpreter. | ||
architecture: x64 | ||
|
||
- name: Build raylib-python-cffi-dynamic | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip3 install cffi | ||
pip3 install "cffi>=1.17.0rc1" | ||
pip3 install wheel | ||
pip3 install setuptools | ||
cd dynamic | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters