Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[publish glew win] Add Python 3.12 to matrix for glew and update Github Actions for related jobs #98

Merged
merged 1 commit into from
Dec 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update Github Actions for glew wheels, and add Python 3.12 to matrix …
…for glew
misl6 committed Dec 6, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit ccbdb8859c16e1ee9a6b7bd1120a26f492c6d9b1
14 changes: 7 additions & 7 deletions .github/workflows/windows_glew_wheels.yml
Original file line number Diff line number Diff line change
@@ -26,13 +26,13 @@ jobs:
env:
PACKAGE_ARCH: ${{ matrix.arch }}
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Cache deps
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: kivy_build_cache
key: cache-packages-glew-${{ matrix.arch }}-${{ hashFiles('win/glew.py') }}
@@ -51,19 +51,19 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
python: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]
arch: ['x64', 'x86']
env:
PACKAGE_ARCH: ${{ matrix.arch }}
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
architecture: ${{ matrix.arch }}
- name: Cache deps
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: kivy_build_cache
key: cache-packages-glew-${{ matrix.arch }}-${{ hashFiles('win/glew.py') }}