Browse Source

fix python version constraint in setup.y (amendment to commit 0d96f563ea07242020e79c50e19b71e7ea051009)

https://github.com/fphammerle/acpi-backlight/commit/0d96f563ea07242020e79c50e19b71e7ea051009
Fabian Peter Hammerle 6 months ago
parent
commit
2684f37782
1 changed files with 1 additions and 1 deletions
  1. 1 1
      setup.py

+ 1 - 1
setup.py

@@ -23,7 +23,7 @@ setuptools.setup(
         "Programming Language :: Python :: 3.10",
         "Topic :: Utilities",
     ],
-    python_requires=">=3.7",  # <3.8 untested
+    python_requires=">=3.8",  # <3.8 untested
     install_requires=[],
     setup_requires=["setuptools_scm"],
     tests_require=["pytest"],