Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/release-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.10'
python-version: '3.13'

- name: Build sdist
run: |
Expand Down Expand Up @@ -161,12 +161,12 @@ jobs:
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.9'
python-version: '3.13'

- name: Install cibuildwheel
run: |
python -m pip install -U pip
python -m pip install cibuildwheel>=2.21
python -m pip install cibuildwheel>=3.1.3

- name: Build wheels (non-MacOS arm64)
env:
Expand Down Expand Up @@ -222,10 +222,10 @@ jobs:
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.9'
python-version: '3.13'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel>=2.21 wheel>=0.42
run: python -m pip install cibuildwheel>=3.1.3

- name: Build wheels
env:
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ requires = [
build-backend = "poetry.core.masonry.api"

[tool.poetry.build]
script = "build.py"
script = "build_package.py"
generate-setup-file = true

[tool.poetry]
Expand Down
Loading