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
It seems that I do not add any new requirements in my pyproject, but if i try to run poetry lock, I get
The current project's Python requirement (>=3.6.2,<3.10) is not compatible with some of the required packages Python requirement:
- numpy requires Python >=3.7,<3.11, so it will not be satisfied for Python >=3.6.2,<3.7
- numpy requires Python >=3.7, so it will not be satisfied for Python >=3.6.2,<3.7
- numpy requires Python >=3.7, so it will not be satisfied for Python >=3.6.2,<3.7
- numpy requires Python >=3.7, so it will not be satisfied for Python >=3.6.2,<3.7
- numpy requires Python >=3.7, so it will not be satisfied for Python >=3.6.2,<3.7
- numpy requires Python >=3.7, so it will not be satisfied for Python >=3.6.2,<3.7
- numpy requires Python >=3.7, so it will not be satisfied for Python >=3.6.2,<3.7
- numpy requires Python >=3.7,<3.11, so it will not be satisfied for Python >=3.6.2,<3.7
- numpy requires Python >=3.7,<3.11, so it will not be satisfied for Python >=3.6.2,<3.7
Because no versions of numpy match >1.20.0,<1.20.1 || >1.20.1,<1.20.2 || >1.20.2,<1.20.3 || >1.20.3,<1.21.0 || >1.21.0,<1.21.1 || >1.21.1,<1.21.2 || >1.21.2,<1.21.3 || >1.21.3,<1.21.4 || >1.21.4
and numpy (1.20.0) requires Python >=3.7, numpy is forbidden.
And because numpy (1.20.1) requires Python >=3.7
and numpy (1.20.2) requires Python >=3.7, numpy is forbidden.
And because numpy (1.20.3) requires Python >=3.7
and numpy (1.21.0) requires Python >=3.7, numpy is forbidden.
And because numpy (1.21.1) requires Python >=3.7
and numpy (1.21.2) requires Python >=3.7,<3.11, numpy is forbidden.
And because numpy (1.21.3) requires Python >=3.7,<3.11
and numpy (1.21.4) requires Python >=3.7,<3.11, numpy is forbidden.
So, because replay-rec depends on lightautoml (==0.3.2) which depends on numpy (>=1.20.0), version solving failed.
It seems that poetry tries to find a version of numpy that could satisfy all the pythons simultaneously?
Issue
My project has a dependency on numpy and lightautoml
Lightautoml's pyproject has dependencies for numpy, and I am able to resolve their dependencies:
However, if I create my own pyproject, that depends both on numpy and lightautoml, dependencies cannot be resolved:
It seems that I do not add any new requirements in my pyproject, but if i try to run
poetry lock
, I getIt seems that poetry tries to find a version of numpy that could satisfy all the pythons simultaneously?
Here is the complete log
The text was updated successfully, but these errors were encountered: