From 2373a7fa5ec18180984f1f93dfc3e1c347f88d9d Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 6 Feb 2023 21:05:57 +0100 Subject: [PATCH] setup.py: fix version specifier in python_requires, python tooling not happy with * i guess --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 37e55773..435d43f6 100755 --- a/setup.py +++ b/setup.py @@ -60,7 +60,7 @@ setup( license="AGPL", packages=find_packages(exclude=["test"]), data_files=[("/usr/share/moulinette/locales", locale_files)], - python_requires=">=3.7.*, <3.10", + python_requires=">=3.7.0,<3.10", install_requires=install_deps, tests_require=test_deps, extras_require=extras,