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
19 changes: 10 additions & 9 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ jobs:
matrix:
include:
# Linux 64 bit manylinux2014
- os: ubuntu-latest
python: 37
platform_id: manylinux_x86_64
manylinux_image: manylinux2014
- os: ubuntu-latest
python: 38
platform_id: manylinux_x86_64
Expand Down Expand Up @@ -55,12 +51,13 @@ jobs:
python: 313
platform_id: manylinux_x86_64
manylinux_image: manylinux2014
- os: ubuntu-latest
python: 314
platform_id: manylinux_x86_64
manylinux_image: manylinux2014


# MacOS x86_64
- os: macos-13
python: 37
platform_id: macosx_x86_64
- os: macos-13
python: 38
platform_id: macosx_x86_64
Expand All @@ -79,7 +76,9 @@ jobs:
- os: macos-13
python: 313
platform_id: macosx_x86_64

- os: macos-13
python: 314
platform_id: macosx_x86_64

# MacOS arm64
- os: macos-14
Expand All @@ -100,6 +99,9 @@ jobs:
- os: macos-14
python: 313
platform_id: macosx_arm64
- os: macos-14
python: 314
platform_id: macosx_arm64

steps:
- name: Checkout orbit-count
Expand All @@ -116,7 +118,6 @@ jobs:
- name: Build and test wheels
env:
CIBW_PRERELEASE_PYTHONS: ${{ matrix.prerelease_pythons }}
CIBW_FREE_THREADED_SUPPORT: ${{ matrix.free_threaded_support }}
CIBW_BUILD: cp${{ matrix.python }}-${{ matrix.platform_id }}
CIBW_ARCHS: all
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux_image }}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ minimum-version = "build-system.requires"
[tool.cibuildwheel]
#test-requires = ["pytest", "memory_profiler"]
#test-command = "pytest {project}/tests"
build = ["cp37-*", "cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"]
build = ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*", "cp314-*"]
skip = "*-win32 *-manylinux_i686"
Loading