spotify / luigi

Luigi is a Python module that helps you build complex pipelines of batch jobs. It handles dependency resolution, workflow management, visualization etc. It also comes with Hadoop support built in.
Apache License 2.0
17.71k stars 2.39k forks source link

Replace pipes.quote with shlex.quote #3298

Closed shadchin closed 1 month ago

shadchin commented 1 month ago

Description

The shlex.quote() API is available from Python 3.3 on; pipes.quote() was never documented, and is removed in Python 3.13.

Motivation and Context

Support Python 3.13