We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I get this warning:
.venv/lib/python3.11/site-packages/fire/core.py:59 DeprecationWarning: 'pipes' is deprecated and slated for removal in Python 3.13 import pipes
Can you please remove pipes? See https://docs.python.org/3/library/pipes.html#:~:text=Deprecated%20since%20version%203.11%2C%20will%20be%20removed%20in%20version%203.13%3A%20The%20pipes%20module%20is%20deprecated%20(see%20PEP%20594%20for%20details).%20Please%20use%20the%20subprocess%20module%20instead. for more infos.
Fire actually only uses the quote() function and according to https://github.com/python/cpython/blob/3.11/Lib/pipes.py#L66 this is imported from shlex so it should be a straight-forward replacement.
quote()
shlex
The text was updated successfully, but these errors were encountered:
google#444: Removed pipes dependency
d94bd1b
#444: Removed pipes dependency (#447)
027c502
Co-authored-by: Svayp11 <[email protected]>
It's fixed
Sorry, something went wrong.
No branches or pull requests
I get this warning:
Can you please remove pipes? See https://docs.python.org/3/library/pipes.html#:~:text=Deprecated%20since%20version%203.11%2C%20will%20be%20removed%20in%20version%203.13%3A%20The%20pipes%20module%20is%20deprecated%20(see%20PEP%20594%20for%20details).%20Please%20use%20the%20subprocess%20module%20instead. for more infos.
Fire actually only uses the
quote()
function and according to https://github.com/python/cpython/blob/3.11/Lib/pipes.py#L66 this is imported fromshlex
so it should be a straight-forward replacement.The text was updated successfully, but these errors were encountered: