diff --git a/.github/workflows/build-vtk.yml b/.github/workflows/build-vtk.yml index ade8441..0ea2c22 100644 --- a/.github/workflows/build-vtk.yml +++ b/.github/workflows/build-vtk.yml @@ -14,7 +14,12 @@ jobs: strategy: matrix: os: [ 'ubuntu-20.04', 'macos-13', 'macos-14', 'windows-2019' ] - python-version: [ '3.9', '3.10', '3.11', '3.12' ] + python-version: + - '3.9' + - '3.10' + - '3.11' + - '3.12' + - '3.13' steps: - name: Checkout project diff --git a/.github/workflows/build-wheel.yml b/.github/workflows/build-wheel.yml index 27b1250..8f13d74 100644 --- a/.github/workflows/build-wheel.yml +++ b/.github/workflows/build-wheel.yml @@ -16,7 +16,12 @@ jobs: strategy: matrix: os: [ 'ubuntu-22.04', 'macos-13', 'windows-2019' ] - python-version: [ '3.9', '3.10', '3.11', '3.12' ] + python-version: + - '3.9' + - '3.10' + - '3.11' + - '3.12' + - '3.13' steps: diff --git a/.github/workflows/local-build.yml b/.github/workflows/local-build.yml index 6747c22..348896d 100644 --- a/.github/workflows/local-build.yml +++ b/.github/workflows/local-build.yml @@ -16,7 +16,12 @@ jobs: strategy: matrix: os: [ 'macos-14' ] # macos-arm64 only - python-version: [ '3.9', '3.10', '3.11', '3.12' ] + python-version: + - '3.9' + - '3.10' + - '3.11' + - '3.12' + - '3.13' steps: - name: Checkout project diff --git a/local-build.sh b/local-build.sh index eff12bc..5aaf193 100755 --- a/local-build.sh +++ b/local-build.sh @@ -7,7 +7,7 @@ function info() { trap "info Exited!; exit;" SIGINT SIGTERM -for python_version in '3.9' '3.10' '3.11' '3.12' +for python_version in '3.9' '3.10' '3.11' '3.12' '3.13' do info "Building wheel for Python $python_version..." info "Removing temp files..." diff --git a/local-vtk-build.sh b/local-vtk-build.sh index 94d13ae..af636aa 100755 --- a/local-vtk-build.sh +++ b/local-vtk-build.sh @@ -7,7 +7,7 @@ function info() { trap "info Exited!; exit;" SIGINT SIGTERM -for python_version in '3.9' '3.10' '3.11' '3.12' +for python_version in '3.9' '3.10' '3.11' '3.12' '3.13' do env_name="ocp-build-system-$python_version"