Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add OSX ARM64 wheel #352

Merged
merged 2 commits into from
Mar 20, 2023
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
6 changes: 3 additions & 3 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ jobs:
- name: Install dependencies
run: |
python -m pip install pip "twine>=3.3" -U
python -m pip install "cibuildwheel==2.11.2"
# TODO: Enable py310-* when scipy allows
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
uses: pypa/cibuildwheel@v2.12.1
env:
CIBW_BUILD: 'cp38-* cp39-* cp310-* cp311-*'
CIBW_SKIP: '*-musllinux_*'
CIBW_ARCHS_LINUX: 'x86_64'
CIBW_ARCHS_WINDOWS: 'AMD64'
CIBW_ARCHS_MACOS: 'arm64'
CIBW_TEST_SKIP: '*-macosx_arm64'
CIBW_TEST_REQUIRES: 'pytest pytest-astropy'
CIBW_TEST_COMMAND: 'python -c "import synphot; synphot.test()"'
- name: Check wheels
Expand Down
14 changes: 8 additions & 6 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
1.2.0 (unreleased)
1.2.0 (2023-03-20)
==================

- New ``filter_parameterization`` subpackage to handle filter parameterization,
adapted from ``tynt`` package written by Brett Morris. [#257]

- OBMAG and VEGAMAG are no longer interchangeable. [#331]

- ``Box1D`` model now takes optional ``step`` input to allow user control
over the generated sampleset. Default behavior maintains backwards
compatibility. [#342]

- Dropped support for Python 3.6 and 3.7. Minimum supported Python
version is now 3.8. [#330]

- Bumped minimum supported versions for ``numpy`` to 1.18,
``astropy`` to 4.3, and ``scipy`` to 1.3. [#341]

- OBMAG and VEGAMAG are no longer interchangeable. [#331]

- ``Box1D`` model now takes optional ``step`` input to allow user control
over the generated sampleset. Default behavior maintains backwards
compatibility. [#342]
- Added wheel for OSX ARM64 architecture. [#352]

1.1.1 (2021-11-18)
==================
Expand Down