-
Notifications
You must be signed in to change notification settings - Fork 346
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support nested requirements.txt for Python? #1619
Comments
Do you need them to be referenced by each other? |
Preferably referenced by another file. What do you mean by combine them in devenv? |
try with
or
The idea is to inject absolute path not relative one. |
Thanks for the tip, @dz0ny. However, it does not work as expected. Somehow, it refuses to accept the other venv.requirements = "${./.}/requirements-development.txt";
venv.requirements = "${config.env.DEVENV_ROOT}/requirements-development.txt";
|
Using the main venv.requirements = "${./.}/requirements.txt";
|
|
These help! Thanks, @dz0ny! |
There's also #981 |
If the
requirements-development.txt
include a nested link torequirements.txt
, it fails.How can we support nested
requirements.txt
for Python?See https://devenv.sh/community/get-involved/ for how to contact the community.
Feel free to also post a question here.
The text was updated successfully, but these errors were encountered: