Skip to content

Commit

Permalink
Merge pull request #195 from altheaden/pip-install-flags
Browse files Browse the repository at this point in the history
Add additional flags to `pip install` command
  • Loading branch information
xylar authored Sep 23, 2024
2 parents c9273f7 + 3d7f9ea commit 84936cc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
conda create -n mache_dev --file spec-file.txt \
python=${{ matrix.python-version }}
conda activate mache_dev
python -m pip install -e .
python -m pip install --no-deps --no-build-isolation -vv -e .
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
name: Run Tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
conda create -n mache_dev --file spec-file.txt \
python=${{ matrix.python-version }}
conda activate mache_dev
python -m pip install -e .
python -m pip install -vv --no-deps --no-build-isolation -e .
- name: Build Sphinx Docs
run: |
Expand Down
2 changes: 1 addition & 1 deletion conda/build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

$PYTHON -m pip install -vv --no-deps .
$PYTHON -m pip install -vv --no-deps --no-build-isolation .

mkdir -p "$PREFIX"/bin
POST_LINK="$PREFIX"/bin/.mache-post-link.sh
Expand Down
4 changes: 2 additions & 2 deletions docs/developers_guide/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ conda config --add channels conda-forge
conda config --set channel_priority strict
conda create -y -n mache_dev --file spec-file.txt
conda activate mache_dev
python -m pip install -e .
python -m pip install --no-deps --no-build-isolation -e .
```

To install the development version of `mache` in an existing
environment, you can run:

```bash
conda install --file spec-file.txt
python -m pip install -e .
python -m pip install --no-deps --no-build-isolation -e .
```

(dev-code-styling)=
Expand Down

0 comments on commit 84936cc

Please sign in to comment.