Skip to content

Commit 79b0604

Browse files
authored
Prepare for Traits 7.0.1 release (#1825)
- Backport PR #1822 - Bump the version in setup.py.
1 parent 5695a2a commit 79b0604

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed

.github/workflows/release-to-pypi.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build-wheels:
1010
strategy:
1111
matrix:
12-
os: [windows-latest, macos-latest, ubuntu-latest]
12+
os: [windows-latest, macos-13, macos-14, ubuntu-latest]
1313

1414
runs-on: ${{ matrix.os }}
1515

@@ -18,12 +18,6 @@ jobs:
1818
- name: Check out the release commit
1919
uses: actions/checkout@v4
2020

21-
- name: Set up QEMU
22-
uses: docker/setup-qemu-action@v3
23-
with:
24-
platforms: arm64
25-
if: runner.os == 'Linux'
26-
2721
- name: Set up Python
2822
uses: actions/setup-python@v5
2923
with:

CHANGES.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
Traits CHANGELOG
22
================
33

4+
Release 7.0.1
5+
-------------
6+
7+
Released: 2025-01-24
8+
9+
This is a bugfix release of the Traits package that adjusts the wheel
10+
building configuration. There are no non-packaging-related changes
11+
in this release.
12+
13+
Changes
14+
~~~~~~~
15+
* Drop problematic manylinux/aarch64 wheel builds; build separate wheels
16+
for macOS/arm64 and macOS/x86_64. (#1822)
17+
418
Release 7.0.0
519
-------------
620

pyproject.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,3 @@ order_by_type = 'False'
1313

1414
[tool.cibuildwheel]
1515
skip = 'pp*'
16-
17-
[tool.cibuildwheel.macos]
18-
archs = ['auto', 'universal2']
19-
20-
[tool.cibuildwheel.linux]
21-
archs = ['auto', 'aarch64']

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# into the package source.
2121
MAJOR = 7
2222
MINOR = 0
23-
MICRO = 0
23+
MICRO = 1
2424
PRERELEASE = ""
2525
IS_RELEASED = True
2626

0 commit comments

Comments
 (0)