Skip to content

Commit

Permalink
only win64 wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
MLopez-Ibanez committed Dec 2, 2023
1 parent cd6fa4e commit 10610de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ jobs:
strategy:
# When set to true, GitHub cancels all in-progress jobs if any matrix job fails.
fail-fast: false
# The maximum number of jobs that can run simultaneously
max-parallel: 1
matrix:
os: [ ubuntu-latest ]
# This must be kept in sync with pyproject.toml
Expand Down Expand Up @@ -114,7 +112,7 @@ jobs:
- name: Checkout sources 🛎️
uses: actions/checkout@v4

- name: Setup Python
- name: Setup Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
Expand Down Expand Up @@ -159,20 +157,16 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
# When set to true, GitHub cancels all in-progress jobs if any matrix job fails.
fail-fast: true
# The maximum number of jobs that can run simultaneously
max-parallel: 1
matrix:
os: [ubuntu-latest]
python-version: ['3.11']
python-version: ['3.10']

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ addopts = '--doctest-modules --ignore-glob="*generate-expected-output.py"'

[tool.cibuildwheel]
# Only build on CPython 3.10
build = "cp10-*"
#build = "cp310-*"
skip = ["pp*", # Disable building PyPy wheels on all platforms
"*-musllinux_aarch64", "cp38-musllinux_x86_64",
"*-win32", "*-manylinux_i686" # Skip 32-bit builds
Expand Down

0 comments on commit 10610de

Please sign in to comment.