docs: minor update to overlays docs
This commit is contained in:
parent
0f3d09915c
commit
477b7e8fd3
2 changed files with 6 additions and 2 deletions
|
@ -64,6 +64,10 @@ Verify the setup:
|
||||||
|
|
||||||
This basically means that modules will be searched in both paths, with overlay taking precedence.
|
This basically means that modules will be searched in both paths, with overlay taking precedence.
|
||||||
|
|
||||||
|
** Installing with =--use-pep517=
|
||||||
|
|
||||||
|
See here for discussion https://github.com/seanbreckenridge/reorder_editable/issues/2, but TLDR it should work similarly.
|
||||||
|
|
||||||
* Testing runtime behaviour (editable install)
|
* Testing runtime behaviour (editable install)
|
||||||
|
|
||||||
: $ python3 -c 'import my.reddit as R; print(R.upvotes())'
|
: $ python3 -c 'import my.reddit as R; print(R.upvotes())'
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -eux
|
set -eux
|
||||||
pip3 install --user -e overlay/
|
pip3 install --user "$@" -e main/
|
||||||
pip3 install --user -e main/
|
pip3 install --user "$@" -e overlay/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue