python-oauth2 icon indicating copy to clipboard operation
python-oauth2 copied to clipboard

DeprecationWarning: distutils versions classes are deprecated.

Open cchacholiades opened this issue 3 years ago • 0 comments
trafficstars

This warning is thrown when using oauth2==1.9.0.post1 & Django 3.2

/venv3/lib/python3.9/site-packages/oauth2/_version.py:17: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead.
  __version__ = distutils_Version(verstr)

Should be easy to fix:

from packaging import version
 __version__ = version(verstr)

cchacholiades avatar Jul 16 '22 12:07 cchacholiades