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
2 changes: 0 additions & 2 deletions .github/workflows/on_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ jobs:
name: Build
uses: ./.github/workflows/reusable_build.yml
secrets: inherit
with:
CIBW_BUILD: "cp*-manylinux_x86_64 cp*-macosx_arm64"

# Upload wheels if a release was created
upload:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/on_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@ jobs:
build:
name: Build
uses: ./.github/workflows/reusable_build.yml
secrets: inherit
secrets: inherit
with:
CIBW_BUILD: "cp311-*"
2 changes: 1 addition & 1 deletion .github/workflows/reusable_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
CIBW_BUILD:
required: false
type: string
default: "cp311-manylinux_x86_64 cp311-macosx_arm64"
default: ""

jobs:
build:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/reusable_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ on:
type: boolean
default: false

# Allow only one docs deployment at a time per branch/branch
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
docs:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -52,6 +57,10 @@ jobs:
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"

# Ensure docs build docs
- name: Build docs
run: uv run mkdocs build

# Deploy latest tag
- name: Deploy docs
if: ${{ inputs.deploy_latest }}
Expand Down
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,13 @@ VCPKG_INSTALLED_DIR = "./.vcpkg_installed"
# VCPKG_INSTALL_OPTIONS = "--debug"

[tool.cibuildwheel]
build = ["cp*-manylinux_x86_64", "cp*-macosx_arm64"]
skip = ["cp310-*", "cp3??t-*"]
skip = [
"cp3??t-*", # skip free-threaded builds
"*musllinux*", # skip musl builds
"*win32", # skip 32-bit windows
"*macosx_x86_64", # skip intel mac builds
"*macosx_universal2", # skip universal2 mac builds
]
test-requires = "pytest>=8.3.5 scipy>=1.15.2"
test-command = "evalio ls pipelines && pytest {project}/tests"
build-verbosity = 1
Expand Down