Skip to content

Commit

Permalink
refactor(workflows/python): explicitly set build targets
Browse files Browse the repository at this point in the history
cibuildwheel seems to ignore python 3.13
  • Loading branch information
Curve authored Nov 2, 2024
1 parent 61b19b6 commit abec1e2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ jobs:
include:
- os: ubuntu-latest
container: ghcr.io/viennatools/vienna-builder:python
skip: "cp36-* cp37-* cp38-* cp39-*"
build: "*p310-* *p311-* *p312-* *p313-*"

- os: windows-latest
skip: "cp36-* cp37-* cp38-* cp39-*"
build: "*p310-* *p311-* *p312-* *p313-*"

- os: macos-latest
skip: "cp36-* cp37-* cp38-* cp39-* cp310-*"
build: "*p310-* *p311-* *p312-* *p313-*"

runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
- name: 🏗️ Build Wheels
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_SKIP: ${{ matrix.skip }}
CIBW_BUILD: ${{ matrix.build }}
CIBW_ARCHS_WINDOWS: auto64

- name: 📦 Upload Artifact
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.20 FATAL_ERROR)
project(
ViennaLS
LANGUAGES CXX
VERSION 4.0.1)
VERSION 4.0.2)

# --------------------------------------------------------------------------------------------------------
# Library options
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ We recommend using [CPM.cmake](https://github.com/cpm-cmake/CPM.cmake) to consum

* Installation with CPM
```cmake
CPMAddPackage("gh:viennatools/viennals@4.0.1")
CPMAddPackage("gh:viennatools/viennals@4.0.2")
```

* With a local installation
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["scikit-build-core", "pybind11"]
build-backend = "scikit_build_core.build"

[project]
version = "4.0.1"
version = "4.0.2"
name = "ViennaLS"
readme = "README.md"
license = {file = "LICENSE"}
Expand Down

0 comments on commit abec1e2

Please sign in to comment.