-
|
Beta Was this translation helpful? Give feedback.
Answered by
frostming
Aug 30, 2024
Replies: 2 comments 2 replies
-
I had luck manually editing the |
Beta Was this translation helpful? Give feedback.
1 reply
-
To update the Python version range in pdm.lock to match the new range >=3.9,<3.12, use the following command: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
requires-python
in lock target is independent from project's requires-python, it only copies from the latter when being created first time. You have to runpdm lock --update-reuse --python '>=3.9,<3.12'
to update it manually.