psf / cachecontrol

The httplib2 caching algorithms packaged up for use with requests.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PEP 440

0xbentang opened this issue · comments

In setup.py we have

python_requires=">=3.6.*"

Which is not compatible with PEP440

>>> import pep440
>>> from pep440 import is_canonical
>>> is_canonical('3.6.5')
True
>>> is_canonical('3.6.*')
False

I am using Poetry and this completely breaks the functionality of Poetry.

Similar issue:

adrienverge/yamllint#387

I just ran into this as well. @ionrock, would it be possible to cut a 0.12.8 version with this change?

Thank you @ionrock !