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
3 changes: 2 additions & 1 deletion .github/workflows/build_test_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions:

jobs:
build_wheels:
name: Build wheels on self-hosted manylinux_2_28
name: Build wheels on self-hosted manylinux_2_28 for TestPyPi
runs-on: linux_x64

steps:
Expand Down Expand Up @@ -49,6 +49,7 @@ jobs:
source test_env/bin/activate
pip install --upgrade pip
# Install from TestPyPI (must allow pre-releases if version has dev/alpha)
pip install numpy
pip install --index-url https://test.pypi.org/simple/ zvec
# Run a simple smoke test
python -c "import zvec; print('Import OK:', zvec.__version__)"
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/linux_x64_docker_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ on:
branches: [ "main" ]
workflow_dispatch:

concurrency:
group: pr-${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true

permissions:
contents: read

jobs:
build:
name: Zvec LinuxX64 CI
runs-on: linux_x64

strategy:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/mac_arm64_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ on:
branches: [ "main" ]
workflow_dispatch:

concurrency:
group: pr-${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true

permissions:
contents: read

jobs:
build:
name: Zvec MacArm64 CI
runs-on: mac_m1_arm

steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nightly_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ permissions:

jobs:
coverage:
name: Nightly Coverage Report
runs-on: linux_x64

strategy:
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,10 @@ sdist.include = [
BUILD_TOOLS = "OFF"
BUILD_PYTHON_BINDINGS = "ON"

# Setuptools config for test pypi
[tool.setuptools_scm]
local_scheme = "no-local-version"
version_scheme = "guess-next-dev"
######################################################################################################
# TESTING & QUALITY
######################################################################################################
Expand Down