Skip to content
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
10 changes: 6 additions & 4 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,20 @@ jobs:
py-vers-pr: cp311-*
before-all: dnf -y install cmake ninja-build boost-devel
extra-env: ""
- os: macos-13
- os: macos-15-intel
arch: x86_64
py-vers-full: cp39-* cp310-* cp311-* cp312-* cp313-*
py-vers-pr: cp312-*
before-all: brew install ninja boost
extra-env: CC="$(brew --prefix llvm@15)/bin/clang" CXX="$(brew --prefix llvm@15)/bin/clang++" HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
extra-env: CC=clang CXX=clang++
mdt: 15.0
- os: macos-14
arch: arm64
py-vers-full: cp39-* cp310-* cp311-* cp312-* cp313-*
py-vers-pr: cp313-*
before-all: brew install ninja boost
extra-env: CC="$(brew --prefix llvm@15)/bin/clang" CXX="$(brew --prefix llvm@15)/bin/clang++" HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=1
extra-env: CC=clang CXX=clang++
mdt: 14.0

env:
CIBW_BUILD: ${{ github.event_name != 'pull_request' && matrix.py-vers-full || matrix.py-vers-pr }}
Expand All @@ -54,7 +56,7 @@ jobs:
CIBW_BEFORE_ALL: ${{ matrix.before-all }}
CIBW_BEFORE_BUILD: pip install --upgrade pip setuptools wheel
CIBW_ENVIRONMENT: ${{ matrix.extra-env }}
MACOSX_DEPLOYMENT_TARGET: 10.15
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.mdt }}

steps:
- name: checkout repo & submodules
Expand Down
9 changes: 9 additions & 0 deletions README_PyPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ The user manual for threads can be found [here](https://palamaralab.github.io/so

## Installation

Prebuilt CPython wheels are available for Linux (compatible with glibc ≥ 2.28) and macOS (built on macOS 15 for x86_64 and macOS 14 for arm64).

| Platform \ CPython | ≤3.8 | 3.9 | 3.10 | 3.11 | 3.12 | 3.13 | 3.14 |
|-----------------------------| ---- | --- | ---- | ---- | ---- | ---- | ---- |
| Linux x86_64 | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| Linux aarch64 | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| macOS Intel (x86_64) | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| macOS Apple Silicon (arm64) | ❌ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |

```sh
pip install threads_arg
```
6 changes: 6 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# threads Release Notes

## [Unreleased]

### Changed

- Build wheels on macOS 14 for arm64 and macOS 15 for x86_64 (#108)

## [0.2.1] - 2025-06-03

### Added
Expand Down
Loading