zodb / relstorage

A backend for ZODB that stores pickles in a relational database.
Other
53 stars 46 forks source link

Uses `six` library but does not declare it. #504

Open icemac opened 3 months ago

icemac commented 3 months ago

Getting rid of the six library in the dependencies of zodbupdate shows that relstorage uses it without declaring this in setup.py.

Suggested solution: Replace the places where six is used with the Python 3 only code as Python 2 is no longer supported.

Should I come up with a pull request?