Sysop: | Amessyroom |
---|---|
Location: | Fayetteville, NC |
Users: | 42 |
Nodes: | 6 (0 / 6) |
Uptime: | 00:27:18 |
Calls: | 220 |
Calls today: | 1 |
Files: | 824 |
Messages: | 121,519 |
Posted today: | 6 |
[tool.poetry.dependencies]
python = "^3.6"
first-package = "^1.6.0"
Could not find a version that satisfies the requirement first-package<2.0.0,>=1.6.0 (from second-package==0.5.0) (from versions: )
No matching distribution found for first-package<2.0.0,>=1.6.0 (from second-package==0.5.0)
On 6/11/24 4:13 am, Loris Bennett wrote:
[tool.poetry.dependencies]
python = "^3.6"
first-package = "^1.6.0"
Could not find a version that satisfies the requirement
first-package<2.0.0,>=1.6.0 (from second-package==0.5.0) (from
versions: )
No matching distribution found for first-package<2.0.0,>=1.6.0 (from second-package==0.5.0)
What version number does first-package have?
The caret in the specification "^1.6.0" restricts it to 1.x.x versions.
If you don't want that restriction, use ">=" instead.