Can't install Dependencies with extras
that contain -
#7287
Labels
status/duplicate
Duplicate issues
extras
that contain -
#7287
-vvv
option) and have included the output below.Issue
BUG
If a dependency contains
-
in itsextras
field, they can't be installed if the package is built withpoetry build
and thenpip install <package>
. It gives a warning and doesn't install those extra packagesSteps
pyproject.toml
withpoetry add sktime[all_extras,dl]==0.15.0
which added to toml as:
sktime = {version = "0.15.0", extras = ["all-extras", "dl"]}
poetry build
pip install <my_built_package.tar.gz>
WARNING: sktime 0.15.0 does not provide the extra 'all-extras'
Notes
pip install sktime[all_extras, dl]
PKG-INFO
has the following content:Requires-Dist: sktime[all-extras,dl] (==0.15.0)
Requires-Dist: sktime[all_extras,dl] (==0.15.0)
. But it gave the same warning again.The text was updated successfully, but these errors were encountered: