We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
pip install
check-python
Current the check-python step also tries to install the packages in a new environment with pip:
jupyter_releaser/jupyter_releaser/python.py
Lines 71 to 75 in 5c89302
This can cause issues in Python monorepos with packages depending on each other with lower bounds, for example:
foo
0.1.2
bar
foo >= 0.1.2
When trying to install bar in the check-python, package foo==0.1.2 has not yet been released and bar cannot be installed.
foo==0.1.2
This might also be related to #371 and #372, although not sure if they still applied after the switch to releaser v2.
v2
The text was updated successfully, but these errors were encountered:
check_dist
An alternative could also be to allow for passing extra args (for example --no-deps).
--no-deps
Sorry, something went wrong.
jupyterlite-core
No branches or pull requests
Current the
check-python
step also tries to install the packages in a new environment with pip:jupyter_releaser/jupyter_releaser/python.py
Lines 71 to 75 in 5c89302
This can cause issues in Python monorepos with packages depending on each other with lower bounds, for example:
foo
, version0.1.2
, has no dependencybar
, version0.1.2
has a dependency onfoo >= 0.1.2
When trying to install
bar
in thecheck-python
, packagefoo==0.1.2
has not yet been released andbar
cannot be installed.This might also be related to #371 and #372, although not sure if they still applied after the switch to releaser
v2
.The text was updated successfully, but these errors were encountered: