-vvv option).Hi guys,
I tried out poetry because pipenv has unresolved dependency conflicts, where they should not happen.
Unfortunately, something similar happenend to me now with poetry.
In my dependencies, I use a private module which requires shove>=0.6.6. With pipenv, this installs without a problem:

With poetry, it tries to install the package futures==3.2.0, which is clearly not compatible:
Updating dependencies
Resolving dependencies... (34.5s)Package operations: 42 installs, 26 updates, 0 removals
Writing lock file
- Installing futures (3.2.0)
[VenvCommandError]
Command ['pip', 'install', '--no-deps', '--index-url', 'xxxx/repository/pypi-all/sim
ple', 'futures==3.2.0'] errored with the following output:
Looking in indexes: xxxx/repository/pypi-all/simple
Collecting futures==3.2.0
Using cached xxxx/repository/pypi-all/packages/1f/9e/7b2ff7e965fc654592269f2906ade1c7d705f1bf25b7d469fa153f7d19eb/futures-3.2.0
.tar.gz
futures requires Python '>=2.6, <3' but the running Python is 3.5.2install [--no-dev] [--dry-run] [-E|--extras EXTRAS] [--develop DEVELOP]
According to poetry show --tree, futures is a requirement for shove:

This seems not right to me and I don't understand the different behavior in comparison to pipenv.
Thanks!
Thanks for reporting this and sorry about that!
This has already been fixed on the develop branch and the fix will be officially released in the next 0.12 version.
You can already try it if you want by installing the current 0.12 pre release, preferably by using the new recommended installer.
curl -sSL https://raw.githubusercontent.com/sdispater/poetry/develop/get-poetry.py
See https://github.com/sdispater/poetry/blob/develop/docs/docs/index.md#installation for more information
Thanks for the quick reaction, I will try that!
Hmm, with version 0.12.0a2, the same error happens, futures is in the pyproject.lock-file as a dependency of shove :(
I will try to set up a new environment soon, as I think this could also be an error source.
futures is in the pyproject.lock file because it is indeed a dependency of shove. However, now, Poetry will now choose a version of futures <3.2.0 which does not have a Python restriction.
Basically, shove does not use environment markers to tell that futures should be installed only for Python < 3.0 so Poetry can only assume that it is a strict dependency.
This is an issue upstream and should be fixed by the shove maintainers.
Most helpful comment
Thanks for reporting this and sorry about that!
This has already been fixed on the
developbranch and the fix will be officially released in the next0.12version.You can already try it if you want by installing the current
0.12pre release, preferably by using the new recommended installer.See https://github.com/sdispater/poetry/blob/develop/docs/docs/index.md#installation for more information