brettcannon / caniusepython3

Can I Use Python 3?
Apache License 2.0
412 stars 64 forks source link

Wrong check result for python-oauth2 #176

Closed troeger closed 6 years ago

troeger commented 6 years ago

Calling caniusepython3 --projects python-oauth2 shows a negative result for Python 3 compatibility.

The PyPI page for the project: https://pypi.python.org/pypi/python-oauth2

The package works fine with Python 3.4 in my project, their setup.py file also has an according language indication. There might be a syntax error in the classifier list, since the PyPI home page also does not show the classifiers, but I failed to find it.

brettcannon commented 6 years ago

It looks like the library owner is using setuptools and forgot to run the appropriate command to re-generate the metadata on PyPI. Do you want to do a PR to add an override, @troeger ?

troeger commented 6 years ago

Sure.