Skip to content

Commit

Permalink
yamlの環境変数で指定できないか検証する
Browse files Browse the repository at this point in the history
  • Loading branch information
e60e256 committed Mar 21, 2024
1 parent 523229b commit a7de506
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_to_pypi_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_ENVIRONMENT: "CMAKE_ARGS='-DPYTHON_EXECUTABLE=$(which python3.10)'"
CIBW_ENVIRONMENT: "CMAKE_ARGS='-DPYTHON_EXECUTABLE=$(which python3.10)' -DCMAKE_BUILD_TYPE=Release "
CIBW_BUILD: 'cp310-manylinux_x86_64'


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ where = [""]
[tool.cibuildwheel]

build = "cp310-manylinux_x86_64"
before-build = "cmake . -DCMAKE_BUILD_TYPE=Release && cmake --build . -j "
before-build = "cmake . && cmake --build . -j "
#build = "cp3{8,9,10}-manylinux_x86_64 cp3{8,9,10}-musllinux_x86_64"
#build = "cp3{8,9,10}-manylinux_x86_64"
# "Programming Language :: Python :: 3.8",
Expand Down

0 comments on commit a7de506

Please sign in to comment.