The pipes package has been removed from Python
The pipes package was deprecated in Python 3.11 and has now been removed with the release of Python 3.13: https://docs.python.org/3/library/pipes.html
This prevents the package from being imported with the current release of Python.
Suggested fix: pipes.quote can be replaced with shlex.quote
Traceback (most recent call last):
File "/tmp/./tmp/test.py", line 4, in <module>
from kuramoto_sph.parameters import Parameters
File "/tmp/src/kuramoto_sph/parameters.py", line 7, in <module>
from execo_engine import slugify
File "/tmp/venv/lib/python3.13/site-packages/execo_engine/__init__.py", line 20, in <module>
from .log import logger
File "/tmp/venv/lib/python3.13/site-packages/execo_engine/log.py", line 20, in <module>
import execo.log #IGNORE:W0611 #@PydevCodeAnalysisIgnore #@UnusedImport
^^^^^^^^^^^^^^^^
File "/tmp/venv/lib/python3.13/site-packages/execo/__init__.py", line 29, in <module>
from .host import Host
File "/tmp/venv/lib/python3.13/site-packages/execo/host.py", line 19, in <module>
from .utils import comma_join
File "/tmp/venv/lib/python3.13/site-packages/execo/utils.py", line 20, in <module>
import pipes, subprocess, os, time, sys, traceback, re, functools, threading, random
ModuleNotFoundError: No module named 'pipes'