Skip to content

Commit

Permalink
Merge pull request #72 from altheaden/pip-install-flags
Browse files Browse the repository at this point in the history
Add flags to `pip install` command
  • Loading branch information
xylar authored Sep 23, 2024
2 parents 5c539d5 + 9cc4c0e commit a7b5e60
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
conda create -n pyremap_dev --file dev-spec.txt \
python=${{ matrix.python-version }}
conda activate pyremap_dev
python -m pip install .
python -m pip install -vv --no-deps --no-build-isolation .
- if: ${{ steps.skip_check.outputs.should_skip != 'true' }}
name: Run Tests
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ conda config --add channels conda-forge
conda config --set channel_priority strict
conda create -y -n pyremap --file dev-spec.txt
conda activate pyremap
python -m pip install -e .
python -m pip install --no-deps --no-build-isolation -e .
```

## Examples
Expand Down
2 changes: 1 addition & 1 deletion ci/recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ source:

build:
number: 0
script: {{ PYTHON }} -m pip install . -vv
script: {{ PYTHON }} -m pip install -vv --no-deps --no-build-isolation .
noarch: python

requirements:
Expand Down

0 comments on commit a7b5e60

Please sign in to comment.