Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install ONE requirements file with all requirements. #2955

Merged
merged 4 commits into from
Jul 4, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Clarify function name.
  • Loading branch information
matz-e committed Jul 4, 2024
commit 233d9709a489256254fa3aef7248a51ad25b306f
6 changes: 3 additions & 3 deletions packaging/python/build_wheels.bash
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ fi

py_ver=""

clone_install_nmodl_requirements() {
clone_nmodl_and_add_requirements() {
git config --global --add safe.directory /root/nrn
git submodule update --init --recursive --force --depth 1 -- external/nmodl
# We only want the _build_ dependencies
Expand Down Expand Up @@ -70,7 +70,7 @@ build_wheel_linux() {

if [ "$2" == "coreneuron" ]; then
setup_args="--enable-coreneuron"
clone_install_nmodl_requirements
clone_nmodl_and_add_requirements
CMAKE_DEFS="${CMAKE_DEFS},LINK_AGAINST_PYTHON=OFF"
fi

Expand Down Expand Up @@ -120,7 +120,7 @@ build_wheel_osx() {

if [ "$2" == "coreneuron" ]; then
setup_args="--enable-coreneuron"
clone_install_nmodl_requirements
clone_nmodl_and_add_requirements
CMAKE_DEFS="${CMAKE_DEFS},LINK_AGAINST_PYTHON=OFF"
fi

Expand Down
Loading