-
Notifications
You must be signed in to change notification settings - Fork 210
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Remove usage of pipes
#341
Comments
Just came across another one:
|
Same here - this occurred when I attempted to add support for python 3.12: task: [check] ./scripts/builder.sh python3 -m pyright --stats archivist
The 'Install prebuilt node..' hangs forever |
Upgrade all dependencies that support python 3.8-3.12. Disable pyright for 3.12 as it is currently incompatible. (ekalinin/nodeenv#341) AB#8633
The pipes.quote() function was undocumented, and the pipes module was deprecated in Python 3.11 and will be removed in Python 3.13. Fixes ekalinin#341.
Upgrade all dependencies that support python 3.8-3.12. Disable pyright for 3.12 as it is currently incompatible. (ekalinin/nodeenv#341) AB#8633
FWIW, it is deprecated since Python 3.11 and the subprocess module is the recommended as replacement |
* On Python 3.3+, replace pipes.quote with shlex.quote The pipes.quote() function was undocumented, and the pipes module was deprecated in Python 3.11 and will be removed in Python 3.13. Fixes #341. * Choose shlex or pipes based on Python version It was pointed out that pyupgrade can handle this better than try/except.
I am getting
due to
nodeenv/nodeenv.py
Line 26 in 4ae75e3
The text was updated successfully, but these errors were encountered: