Skip to content

Commit

Permalink
Add new osx-arm64 running to GH Action CI (#63)
Browse files Browse the repository at this point in the history
* Add macos-14 entry to CI workflow
  • Loading branch information
IAlibay authored Feb 7, 2024
1 parent c3f8099 commit 3839a76
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Build and upload to PyPI

on:
# uncomment pr trigger when testing
# pull_request:
# branches:
# - "main"
push:
tags:
- "*"
Expand Down Expand Up @@ -31,14 +35,15 @@ jobs:
- [ubuntu-20.04, manylinux_x86_64, x86_64]
- [macos-11, macosx_*, x86_64]
- [windows-2019, win_amd64, AMD64]
python: ["cp39", "cp310", "cp311"]
- [macos-14, macosx_*, arm64]
python: ["cp39", "cp310", "cp311", "cp312"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Build wheels
uses: pypa/[email protected].2
uses: pypa/[email protected].5
env:
CIBW_BUILD: ${{ matrix.python }}-${{ matrix.buildplat[1] }}
CIBW_ARCHS: ${{ matrix.buildplat[2] }}
Expand Down Expand Up @@ -132,7 +137,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- name: setup python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
os: [macOS-latest, ubuntu-latest, windows-latest, macos-14]
python-version: ${{ fromJSON(needs.environment-config.outputs.python-matrix) }}
mdanalysis-version: ["latest", "develop"]

Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ The rules for this file:
### Authors
- ianmkenney
- tylerjereddy
- IAlibay

### Added
<!-- Added functionality -->
Expand All @@ -30,7 +31,7 @@ The rules for this file:
- Temporary fix for Windows integer size default change in NumPy 2.0.0

### Changed
<!-- Changes in existing functionality -->
- Update CI and wheel deployment to include macos-arm64 and py3.12 (PR #63)

### Deprecated
<!-- Soon-to-be removed features -->
Expand Down

0 comments on commit 3839a76

Please sign in to comment.