docs: minor update to overlays docs

This commit is contained in:
Dima Gerasimov 2024-03-12 22:03:46 +00:00 committed by karlicoss
parent 0f3d09915c
commit 477b7e8fd3
2 changed files with 6 additions and 2 deletions

View file

@ -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())'

View file

@ -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/