Skip to content

Commit

Permalink
ci: bump py-build-cmake-version, again
Browse files Browse the repository at this point in the history
  • Loading branch information
nickelpro committed Dec 5, 2024
1 parent 0de4678 commit 35498e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ jobs:

- name: Build
run: |
python -m pip install pipx
pipx run build
platform="$(ldd --version | awk '/ldd/{gsub(/\./, "_", $NF); print "manylinux_" $NF "_x86_64"}')"
pipx run wheel tags --remove --platform=${platform} dist/*linux_x86_64.whl
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ project(nanoroute LANGUAGES CXX VERSION 2.0.1)
option(NANOROUTE_USE_IPO "Use interprocedural optimization if supported" ON)
option(NANOROUTE_STRIP "Run system strip on compiled module" ON)

find_package(Python3 3.13 REQUIRED COMPONENTS Development.Module)
find_package(Python3 3.13 REQUIRED COMPONENTS Interpreter Development.Module)

Python3_add_library(nanoroute MODULE)
target_compile_features(nanoroute PRIVATE cxx_std_23)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ urls = { "Documentation" = "https://nanoroute.dev" }
dependencies = []

[build-system]
requires = ["py-build-cmake~=0.2.0a14"]
requires = ["py-build-cmake~=0.3.2"]
build-backend = "py_build_cmake.build"

[tool.py-build-cmake.module]
Expand Down

0 comments on commit 35498e0

Please sign in to comment.