Skip to content

Commit b8cf533

Browse files
committed
Remove numpy 2.0 workarounds
1 parent 5d23a26 commit b8cf533

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/osx.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@ jobs:
3737
brew install casacore
3838
3939
- name: Make virtualenv
40-
# XXX Use Homebrew's numpy to be safe for now, especially since
41-
# PyPI is now on numpy 2.0, which complicates matters
42-
run: python3 -m venv venv --system-site-packages
40+
run: python3 -m venv venv
4341

4442
- name: Install Python dependencies
4543
run: venv/bin/pip install --upgrade pip wheel delocate pytest
@@ -51,11 +49,9 @@ jobs:
5149
run: cd tests && ../venv/bin/pytest
5250

5351
- name: Make binary wheel
54-
# XXX Use Homebrew's numpy to be safe for now, especially since
55-
# PyPI is now on numpy 2.0, which complicates matters
5652
run: |
5753
venv/bin/pip install --upgrade six scikit-build-core setuptools_scm
58-
venv/bin/pip wheel -w dist --no-build-isolation .
54+
venv/bin/pip wheel -w dist .
5955
6056
- name: Delocate binary wheel
6157
run: venv/bin/delocate-wheel -v dist/*.whl

0 commit comments

Comments
 (0)