Python 3 support?
I'm upgrading a Python 2.7 application to Python 3, using https://pyup.io to track dependencies which are not up-to-date or not Python 3 compatible. https://pyup.io tells me that errand-boy doesn't have Python 3 support, presumably because its setup.py doesn't have classifiers like:
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
I understand that https://pyup.io looks at https://pypi.org/pypi/errand-boy/json to check for Python 3 support.
Are there any plans to address this?
Ah, I wasn't aware of that tool.
If you like, you can submit a Pull Request, otherwise I might get to this soon. Make sure tox.ini runs tests on any tagged Python versions.
OK, thanks for the quick reply - I'll try to find time to submit a pull request.
Thanks! Forgot to mention, in addition to tox.ini, .travis.yml should be updated too.