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 new osx-arm64 running to GH Action CI #63

Merged
merged 4 commits into from
Feb 7, 2024
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
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
Loading