Skip to content

Commit

Permalink
chore: add support for 3.12 (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
jackgerrits authored Oct 5, 2023
1 parent faddb3b commit 6902173
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
fail-fast: false
matrix:
platform: [windows-latest, macos-latest, ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
with:
submodules: true

- name: Checkout specific submodules
run: |
cd ext_libs/vowpal_wabbit
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
cibw_python: [ "cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*"]
cibw_python: [ "cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"]

steps:
- uses: actions/checkout@v3
Expand All @@ -57,7 +57,7 @@ jobs:
git submodule update --init ext_libs/armadillo-code
git submodule update --init ext_libs/ensmallen
- uses: pypa/cibuildwheel@v2.13.1
- uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_BUILD: ${{ matrix.cibw_python }}
CIBW_ARCHS: x86_64
Expand All @@ -76,7 +76,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest]
cibw_python: [ "cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*"]
cibw_python: [ "cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"]

steps:
- uses: actions/checkout@v3
Expand All @@ -91,7 +91,7 @@ jobs:
- id: change-path
run: python -c "import pathlib;print('UNIX_PATH='+str(pathlib.PureWindowsPath(r'${{github.workspace}}').as_posix()))" >> $env:GITHUB_OUTPUT
- uses: pypa/cibuildwheel@v2.13.1
- uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_BUILD: ${{ matrix.cibw_python }}
CIBW_ARCHS: AMD64
Expand All @@ -108,15 +108,15 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest]
cibw_python: [ "cp38-*", "cp39-*", "cp310-*", "cp311-*"]
cibw_python: [ "cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"]

steps:
- uses: actions/checkout@v3
with:
submodules: recursive

# We use full vendoring for this since we need to cross compile the ARM piece.
- uses: pypa/cibuildwheel@v2.13.1
- uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_BUILD: ${{ matrix.cibw_python }}
CIBW_ARCHS_MACOS: universal2
Expand Down

0 comments on commit 6902173

Please sign in to comment.