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
26 changes: 13 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,43 +59,43 @@ jobs:
free_threaded_support: True

# MacOS x86_64
- os: macos-13
- os: macos-15-intel
python: 39
platform_id: macosx_x86_64
- os: macos-13
- os: macos-15-intel
python: 310
platform_id: macosx_x86_64
- os: macos-13
- os: macos-15-intel
python: 311
platform_id: macosx_x86_64
- os: macos-13
- os: macos-15-intel
python: 312
platform_id: macosx_x86_64
- os: macos-13
- os: macos-15-intel
python: 313
platform_id: macosx_x86_64
- os: macos-13
- os: macos-15-intel
python: 313t
platform_id: macosx_x86_64
free_threaded_support: True

# MacOS arm64
- os: macos-14
- os: macos-latest
python: 39
platform_id: macosx_arm64
- os: macos-14
- os: macos-latest
python: 310
platform_id: macosx_arm64
- os: macos-14
- os: macos-latest
python: 311
platform_id: macosx_arm64
- os: macos-14
- os: macos-latest
python: 312
platform_id: macosx_arm64
- os: macos-14
- os: macos-latest
python: 313
platform_id: macosx_arm64
- os: macos-14
- os: macos-latest
python: 313t
platform_id: macosx_arm64
free_threaded_support: True
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
- uses: actions/checkout@v4

- name: Build sdist
run: pipx run build --sdist
run: USE_CYTHON=1 pipx run build --sdist

- uses: actions/upload-artifact@v4
with:
Expand Down
5 changes: 4 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
include src/stochastic_arrow/obsidian.h
include src/stochastic_arrow/mersenne.h
include src/stochastic_arrow/mersenne.h
include src/stochastic_arrow/arrow.pxd
include src/stochastic_arrow/arrowhead.pyx
include src/stochastic_arrow/obsidian.pxd
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ More examples:

## Changelog

### Version 1.1.1
* Include files to install source dist without `USE_CYTHON=1`.

### Version 1.1.0
* Update build toolchain and automatically build/publish wheels for all
major platforms and recent Python versions.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools", "wheel", "cython==3.1.0a1; python_version=='3.13'", "cython; python_version!='3.13'", "numpy"]
requires = ["setuptools", "wheel", "cython", "numpy"]
build-backend = "setuptools.build_meta"
Loading