-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pw --lock
with lock-python-version
attempts to install dependency on python 3.8 that should only be installed on newer versions of python
#112
Comments
This seems like a uv issue, it should indeed only consider truststore if python >=3.10 Until this gets resolved, you can try a manual workaround:
|
DetachHead
added a commit
to DetachHead/basedpyright
that referenced
this issue
Aug 7, 2024
DetachHead
added a commit
to DetachHead/basedpyright
that referenced
this issue
Aug 7, 2024
DetachHead
added a commit
to DetachHead/basedpyright
that referenced
this issue
Aug 7, 2024
The uv issue is fixed in the next release (see: astral-sh/uv#8628). |
houbie
pushed a commit
that referenced
this issue
Nov 5, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
thanks for adding the
lock-python-version
option!i'm on python 3.12 and trying to target 3.8 when running
pw --lock
to install pdm. pdm depends on truststore on python 3.10 and above, but it seems to be trying to install it anyway which causes it to fail:To Reproduce
pyrpoject.toml
:./pw --lock
Expected behavior
no error
Desktop (please complete the following information):
Additional context
could this be because the version of python i'm using doesn't match the version i'm targeting? should
lock-python-version
support a range? eg.">=3.8,<3.13"
The text was updated successfully, but these errors were encountered: