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.
As mentioned in xolox/python-coloredlogs#120, the
pipesmodule has been deprecated now in Python 3.13, causing Sciunit execution to fail for new systems with the latest Python version.pipes.quoteis frequently used in Sciunit for escaping arguments strings coming the shell. It is recommended that they should be replaced withshlex.quotefrom theshlexpackage.