sciber-io / yubikey-locker

Sciber Yubikey Locker
MIT License
1 stars 0 forks source link

Lock python version >3.11 via setup.py #42

Closed andreaspersson-sciber closed 4 months ago

andreaspersson-sciber commented 4 months ago

Python version 3.11 can be enforced on install via a setup.py file and should be specified in the README.

See for example: https://github.com/sciber-io/python-slug/blob/main/%7B%7B%20cookiecutter.repo_name%20%7D%7D/setup.py

setup(
...
    python_requires=">=3.11",
...
)