-
-
Notifications
You must be signed in to change notification settings - Fork 429
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
Windows improvements for pdm use
#3414
Comments
Note that for Therefore, I tend to think that it is nearly a bug that |
It should be fixed in the new release of |
I don't know if |
Finally, it appears that it would be useful for Mercurial to be able to run Do you think it could be possible? In terms of implementation, it does not seem very complicated for PDM with somewhere |
I don't see what the point of this is. |
If there is no point of supporting this from the point of view of PDM, we will have to support it from our code, which makes sense. I was just asking. |
Feature Description
We are trying to use PDM for Mercurial (https://foss.heptapod.net/mercurial/mercurial-devel/-/merge_requests/1285) and we have issues on Windows.
We use
pdm use "$PYTHON" --ignore-remembered --first
in a Makefile target (https://foss.heptapod.net/mercurial/mercurial-devel/-/merge_requests/1285/diffs#836efb6e25a091dcb4ff8e1dbb2f0be6a5cbf14c_73_66).Problem and Solution
Unfortunately, it does not work well on Windows:
pdm use 3.9 --ignore-remembered --first
uses 32-bit but we need 64-bit.pdm use "py -3.9" --ignore-remembered --first
does not work while it seems reasonable.Do you think PDM could be changed to allow this usage?
pdm use 3.9 --ignore-remembered --first
using 64-bit Pythonpdm use "py -3.9" --ignore-remembered --first
delegates topy
the discovery of the interpreter.Are you willing to contribute to the development of this feature?
The text was updated successfully, but these errors were encountered: