You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can reproduce with the following package (that has a dependency on dask[dataframe]):
$ poetry new test_proj
$ cd test_proj
$ poetry install
$ poetry add tsfresh # here everything gets installed as it should
$ poetry update # here fsspec, locket and partd are removed
-vvv
option).Issue
The presence of a secondary package index and a package from there as a dependency messes with dependency resolution.
To reproduce:
poetry new test && cd test
pyproject.toml
poetry install
-- note how this installsappdirs
,fs
,pytz
andsix
.poetry update
-- removes these packages again when it shouldn't.poetry-resolver-bug-test
packagepoetry update
reinstallsappdirs
and friendspoetry update
-- installs thepoetry-resolver-bug-test
package but leavesappdirs
, etc. alonepoetry update
then tosses them again when it shouldn't.In my actual package, the
toml
package (viaisort[pyproject]
) also gets tossed out, but I can't reproduce this here easily.The text was updated successfully, but these errors were encountered: