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?
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:
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?