Skip to content

Commit

Permalink
Just give up and do an array membership check
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasjng committed Dec 18, 2024
1 parent 4472da5 commit 03f09ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, 3.13]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
Expand All @@ -53,7 +53,7 @@ jobs:
uv run --no-sync -- python -c "import nanobind_example; assert nanobind_example.add(1, 2) == 3"
working-directory: ${{ github.workspace }}/nanobind_example
- name: Check ${{ matrix.os }} CPython>=3.12 wheels for stable ABI violations
if: matrix.python-version >= 3.12
if: ${{ contains(fromJSON('["3.12", "3.13"]'), matrix.python-version) }}
run: |
uv pip install abi3audit
uv build --wheel
Expand Down

0 comments on commit 03f09ae

Please sign in to comment.