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

Add additional pip install flags in docs and conda recipe #582

Merged
merged 2 commits into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions conda_package/docs/testing_changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ make them in your branch), run:
cd conda_package
conda env create -y -n mpas_tools_dev --file dev-spec.txt
conda activate mpas_tools_dev
python -m pip install -e .
python -m pip install --no-deps --no-build-isolation -e .

You should now find that ``mpas_tools`` can be imported in python codes and the
various scripts and entry points are available in the path.
Expand All @@ -42,7 +42,7 @@ use:

conda env update -f ./dev_environment
conda activate mpas_tools_dev
python -m pip install -e .
python -m pip install --no-deps --no-build-isolation -e .

to update the existing environment and make sure ``mpas_tools`` in the
environment points to your current branch.
Expand Down
2 changes: 1 addition & 1 deletion conda_package/recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e
cp -r ocean landice visualization mesh_tools conda_package

cd conda_package
${PYTHON} -m pip install . --no-deps -vv
${PYTHON} -m pip install . --no-deps --no-build-isolation -vv

# build and install ocean topography smoothing tool
cd ${SRC_DIR}/conda_package/ocean/smooth_topo
Expand Down