Skip to content
Merged
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
30 changes: 15 additions & 15 deletions .github/workflows/build_dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # To ensure tags are retrieved to enabe setuptools_scm to work
fetch-depth: 0 # To ensure tags are retrieved to enable setuptools_scm to work
- name: Install Python 3.x
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.x
- name: Build sdist
Expand All @@ -45,17 +45,17 @@ jobs:
matrix:
os:
- ubuntu-latest
- macos-13 # x86
- macos-15-intel # x86
- macos-latest # arm
- windows-latest
cibw_build: [cp39-*, cp310-*, cp311-*, cp312-*, cp313-*, cp313t-*]
cibw_build: [cp39-*, cp310-*, cp311-*, cp312-*, cp313-*, cp313t-*, cp314-*]
steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # To ensure tags are retrieved to enabe setuptools_scm to work
fetch-depth: 0 # To ensure tags are retrieved to enable setuptools_scm to work
- name: Install Python 3.x
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.x
- name: Set up QEMU # Needed to build aarch64 wheels
Expand All @@ -78,7 +78,7 @@ jobs:
echo "CIBW_ENVIRONMENT=PYLZ4_USE_SYSTEM_LZ4=False" >> "$GITHUB_ENV"
echo "CIBW_TEST_COMMAND=tox -c {project}" >> "$GITHUB_ENV"
- name: Build wheels
uses: pypa/cibuildwheel@v2.23.2
uses: pypa/cibuildwheel@v3.2.0
env:
# CIBW_ARCHS_LINUX: "x86_64 i686 aarch64"
CIBW_ARCHS_LINUX: "x86_64 i686"
Expand Down Expand Up @@ -106,14 +106,14 @@ jobs:
matrix:
os:
- ubuntu-24.04-arm
cibw_build: [cp39-*, cp310-*, cp311-*, cp312-*, cp313-*, cp313t-*]
cibw_build: [cp39-*, cp310-*, cp311-*, cp312-*, cp313-*, cp313t-*, cp314-*]
steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0 # To ensure tags are retrieved to enabe setuptools_scm to work
fetch-depth: 0 # To ensure tags are retrieved to enable setuptools_scm to work
- name: Install Python 3.x
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: 3.x
- name: Setup free-threading variables
Expand All @@ -132,7 +132,7 @@ jobs:
echo "CIBW_ENVIRONMENT=PYLZ4_USE_SYSTEM_LZ4=False" >> "$GITHUB_ENV"
echo "CIBW_TEST_COMMAND=tox -c {project}" >> "$GITHUB_ENV"
- name: Build wheels
uses: pypa/cibuildwheel@v2.23.2
uses: pypa/cibuildwheel@v3.2.0
env:
CIBW_ARCHS_LINUX: "aarch64"
CIBW_BUILD: ${{ matrix.cibw_build }}
Expand All @@ -151,7 +151,7 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
pattern: cibw-*
path: dist
Expand Down
Loading