projectfluent / python-fluent

Python implementation of Project Fluent
https://projectfluent.org/python-fluent/
Other
210 stars 26 forks source link

Prevent package from installing on Python < 3.6 #195

Closed dolfinus closed 7 months ago

dolfinus commented 10 months ago

163 dropped support of Python < 3.6, but haven't set minimal Python version in setup.py. Currently only classifiers are set, which are just additional information used for search, these values are not checked during package installation.

Adding python_requires to setup.py to allow package managers to check that package is compatible only with Python >= 3.6.

fix #188