Skip to content

Commit

Permalink
Merge pull request #352 from pllim/build-m1-wheel
Browse files Browse the repository at this point in the history
Add OSX ARM64 wheel
  • Loading branch information
pllim committed Mar 20, 2023
2 parents 2e9032f + 7dab48d commit c9016eb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-to-pypi.yml
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
@@ -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

0 comments on commit c9016eb

Please sign in to comment.