python ^3.10.1 is not valid
#5284
Unanswered
UltiRequiem
asked this question in
Q&A
Replies: 1 comment
-
This seems to work with Poetry root@788856528f8a:/foo# cat pyproject.toml
[tool.poetry]
name = "foo"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
root@788856528f8a:/foo# poetry --version
Poetry version 1.1.13
root@788856528f8a:/foo# poetry lock
Updating dependencies
Resolving dependencies... (0.1s)
root@788856528f8a:/foo# poetry add pycowsay
Using version ^0.0.0 for pycowsay
Updating dependencies
Resolving dependencies... (0.8s)
Writing lock file
Package operations: 1 install, 0 updates, 0 removals
• Installing pycowsay (0.0.0.1) A note on the specificaiton however. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
How would be the correct way to do set any python version bigger than
X
.Currently, I'm doing
With this, I got this error 👇🏽
Beta Was this translation helpful? Give feedback.
All reactions