reubano / pygogo

A Python logging library with superpowers
MIT License
281 stars 20 forks source link

BUGFIX: modern setuptools no longer accepts unordered sets #13

Closed gyp closed 6 years ago

gyp commented 6 years ago

Since closing https://github.com/pypa/setuptools/issues/458, setuptools no longer accepts unordered sets for a dependency list, which makes any setup.py call fail with the following error, breaking the installation:

error in pygogo setup command: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers; Unordered types are not allowed

Since we don't care about the order at this point, let's just force it to be a list.