-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Closed
Labels
contributions welcomedependenciesPull requests that update a dependency filePull requests that update a dependency file
Description
The package distutils is deprecated and slated for removal in Python 3.12. We are using the function find_executable
that belongs to that package. We should instead be using which
from the package shutil
.
Therefore we should make the change from
from distutils.spawn import find_executable
to
from shutil import which
from distutils.spawn import find_executable |
And the change from
if find_executable("docker-compose") is None:
to
if which("docker-compose") is None:
if find_executable("docker-compose") is None: |
yezminassad, AceofSpades5757, lorenzwalthert and hidemire
Metadata
Metadata
Assignees
Labels
contributions welcomedependenciesPull requests that update a dependency filePull requests that update a dependency file