Skip to content

Commit

Permalink
disable windows 3.13?
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesturk committed Oct 29, 2024
1 parent 1a57bab commit 46ce497
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
on:
push:
branches:
- 'main'
- "main"
tags:
- '*'
- "*"
pull_request:
workflow_dispatch:

Expand All @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.12', '3.13', 'pypy3.10']
python-version: ["3.8", "3.12", "3.13", "pypy3.10"]
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -33,7 +33,7 @@ jobs:
with:
target: ${{ matrix.target }}
args: --release --out dist -i ${{ matrix.python-version }}
sccache: 'true'
sccache: "true"
- name: Install Just
uses: extractions/setup-just@v2
- name: Run Cargo Tests
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i ${{ matrix.platform.interpreter }}
sccache: 'true'
sccache: "true"
manylinux: auto
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i ${{ matrix.platform.interpreter }}
sccache: 'true'
sccache: "true"
manylinux: musllinux_1_1
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand All @@ -121,9 +121,9 @@ jobs:
matrix:
platform:
- target: x64
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13
interpreter: 3.8 3.9 3.10 3.11 3.12 #3.13
- target: x86
interpreter: 3.8 3.9 3.10 3.11 3.12 3.13
interpreter: 3.8 3.9 3.10 3.11 3.12 #3.13
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -133,7 +133,7 @@ jobs:
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i ${{ matrix.platform.interpreter }}
sccache: 'true'
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand All @@ -159,7 +159,7 @@ jobs:
with:
target: ${{ matrix.platform.target }}
args: --release --out dist -i ${{ matrix.platform.interpreter }}
sccache: 'true'
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 46ce497

Please sign in to comment.