Skip to content

Commit

Permalink
Merge branch 'gpimm/INSTX-7467_remove_use_of_build' into 'master'
Browse files Browse the repository at this point in the history
INSTX-7467 Remove use of build

Closes INSTX-7467

See merge request minknow/pod5-file-format!375
  • Loading branch information
0x55555555 committed Nov 21, 2024
2 parents 1e15898 + 1d4b40f commit 71d6968
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Refactored Multi-threading in `DatasetReader` to prevent too many open files errors
- Updated dependency to `pyarrow~=18.0.0` for `python>=3.9`
- Relaxed h5py python dependency
- Removed use of python `build` when building wheel in cmake.

## [0.3.21]

Expand Down
4 changes: 2 additions & 2 deletions c++/pod5_format_pybind/build_wheel.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ set(ENV{POD5_PYBIND_LIB} "${PYBIND_INPUT_LIB}")

file(COPY "${PYBIND_INPUT_LIB}" DESTINATION "${PYTHON_PROJECT_DIR}/src/lib_pod5")

message(" using: ${PYTHON_EXECUTABLE} -m build --outdir ${WHEEL_OUTPUT_DIR}")
message(" using: ${PYTHON_EXECUTABLE} -m pip wheel . --wheel-dir ${WHEEL_OUTPUT_DIR}")

execute_process(
COMMAND ${PYTHON_EXECUTABLE} -m build --outdir ${WHEEL_OUTPUT_DIR}
COMMAND ${PYTHON_EXECUTABLE} -m pip wheel . --wheel-dir ${WHEEL_OUTPUT_DIR}
WORKING_DIRECTORY "${PYTHON_PROJECT_DIR}/"
RESULT_VARIABLE exit_code
OUTPUT_VARIABLE output
Expand Down

0 comments on commit 71d6968

Please sign in to comment.