ARM-software / devlib

Library for interaction with and instrumentation of remote devices.
Apache License 2.0
47 stars 78 forks source link

DeprecationWarning on the pipes module #609

Closed douglas-raillard-arm closed 1 year ago

douglas-raillard-arm commented 1 year ago

Devlib uses from pipes import quote in a number of places. Python 3.11 deprecated the pipes modules, and the quote() function can be imported from shlex module since Python 3.3 (it was probably imported from pipes to be compatible with Python 2)

marcbonnici commented 1 year ago

Thanks for raising this, we have merged https://github.com/ARM-software/devlib/pull/610 to address the issue.