Skip to content

Commit

Permalink
change order
Browse files Browse the repository at this point in the history
  • Loading branch information
gbarter committed Jan 17, 2024
1 parent 3fa93cd commit a3558ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI_pyFrame3DD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
CXX: '${{ steps.install_cc.outputs.cxx }}'
run: |
'${{ steps.cp.outputs.python-path }}' -m pip uninstall pyframe3dd
'${{ steps.cp.outputs.python-path }}' -m pip install -e --no-build-isolation .
'${{ steps.cp.outputs.python-path }}' -m pip install --no-build-isolation -e .
- name: Editable Test run
run: |
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
MESON_ARGS: ""
run: |
python -m pip uninstall pyframe3dd
python -m pip install -e --no-build-isolation . -v
python -m pip install --no-build-isolation -e . -v
- name: Editable Test run
run: |
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ If you would like to build the project locally from source for easier access to

If developer/editable mode, do the same `git clone` step, but on install do:

$ pip install -e --no-build-isolation .
$ pip install --no-build-isolation -e .

The `--no-build-isolation` option is important per [Meson guidelines](https://meson-python.readthedocs.io/en/latest/how-to-guides/editable-installs.html).


## Unit Tests

Expand Down

0 comments on commit a3558ed

Please sign in to comment.