Dear @xolox Peter,
I tried to install you excellent software rotate-backups with Python 3.13, and it unfortunately failed. As far as I can understand,
it is based in executor, which imports module pipes, which is deprecated in Python 3.13
from executor/__init__.py
# Standard library modules.
import errno
import logging
import os
import pipes
import pprint
import shlex
import signal
import subprocess
import sys
import tempfile
from https://docs.python.org/3/library/pipes.html#module-pipes
This module is no longer part of the Python standard library. It was removed in Python 3.13 after being deprecated in Python 3.11. The removal was decided in PEP 594.
Applications should use the subprocess module instead.
The last version of Python that provided the pipes module was Python 3.12.
Hopefully, I could force installation with Python 3.12.
Do you intend to update module executor with subprocess?
Best regards,
Luc (from Britanny, France)
Dear @xolox Peter,
I tried to install you excellent software
rotate-backupswith Python 3.13, and it unfortunately failed. As far as I can understand,it is based in
executor, which imports modulepipes, which is deprecated in Python 3.13from
executor/__init__.pyfrom https://docs.python.org/3/library/pipes.html#module-pipes
Hopefully, I could force installation with Python 3.12.
Do you intend to update module
executorwithsubprocess?Best regards,
Luc (from Britanny, France)