You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As mentioned in xolox/python-coloredlogs#120, the pipes module has been deprecated now in Python 3.13, causing Sciunit execution to fail for new systems with the latest Python version. pipes.quote is frequently used in Sciunit for escaping arguments strings coming the shell. It is recommended that they should be replaced with shlex.quote from the shlex package.
The text was updated successfully, but these errors were encountered:
sranasir
changed the title
pipes.quote deprecated
pipes.quote Deprecated
Mar 11, 2025
As mentioned in xolox/python-coloredlogs#120, the
pipes
module has been deprecated now in Python 3.13, causing Sciunit execution to fail for new systems with the latest Python version.pipes.quote
is frequently used in Sciunit for escaping arguments strings coming the shell. It is recommended that they should be replaced withshlex.quote
from theshlex
package.The text was updated successfully, but these errors were encountered: