Skip to content

Commit

Permalink
Update build CI to include Python 3.11 and 3.12 (#9)
Browse files Browse the repository at this point in the history
* Update pythonpublish.yaml

* Update pythonpackage.yaml
  • Loading branch information
lukasz-migas committed May 24, 2024
1 parent d9b54dd commit d57eb82
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-20.04, windows-2019, macos-latest]
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pythonpublish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Build wheels
run: python -m cibuildwheel --output-dir dist/
env:
CIBW_BUILD: "cp38* cp39* cp310*"
CIBW_BUILD: "cp38* cp39* cp310* cp311* cp312*"
CIBW_SKIP: "*_i686 *win32 *musllinux* pp*"
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
CIBW_TEST_REQUIRES: "pytest"
Expand Down

0 comments on commit d57eb82

Please sign in to comment.