-
-
Notifications
You must be signed in to change notification settings - Fork 274
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
How to specify extras to install optional-dependencies? #604
Comments
|
I think this could be useful feature, any idea what the effort might be to add this ability? |
Lines 50 to 67 in b556ed1
Just need to add optional dependencies here. The question is what to install since you can specify multiple extras with multiple dependencies in [project.optional-dependencies]
test = [
"pytest < 5.0.0",
"pytest-cov[all]"
]
web = ["flask"] |
are you referring to test / web or that pytest-cov[all] is nested in test ? |
test / web |
how about passing selected extras as arguments for the |
I think it's ok. |
Released in v0.11.4-beta.4: https://pypi.org/project/maturin/0.11.4_beta.4/#files , you can install it with |
Hi,
I would like to install the dependencies specified in "optional-dependencies" in pyproject.toml as pyO3-pure. However, I don't know how to add
extras
argument inmaturin develop
. There is no related information in help message. Thank you.The text was updated successfully, but these errors were encountered: