danielfm / pybreaker

Python implementation of the Circuit Breaker pattern.
BSD 3-Clause "New" or "Revised" License
508 stars 74 forks source link

Add `python_requires` on setup.py #64

Closed Kludex closed 2 years ago

Kludex commented 2 years ago

This makes PR avoids issues with pip package resolution.

Consider that support for Python 3.6 is removed, when pybreaker is installed on Python 3.6, if we don't add this, it will fail, as the latest version will be installed.

See more on https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/#python-requires.

danielfm commented 2 years ago

Thanks!