From c6977fa8518ba982e8d996b641b1a119fb823b8e Mon Sep 17 00:00:00 2001 From: Zach White Date: Sun, 7 Mar 2021 11:07:36 -0800 Subject: [PATCH] fix the python_requires var --- setup.cfg | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 2c2ed99..8f22682 100644 --- a/setup.cfg +++ b/setup.cfg @@ -23,7 +23,7 @@ dist-name = qmk license_file = LICENSE module = qmk_cli home-page = https://github.com/qmk/qmk_cli -requires-python = >=3.5 +requires-python = >=3.7 [entry_points] qmk = qmk_cli.script_qmk:main diff --git a/setup.py b/setup.py index 51c2f86..3835554 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ if __name__ == "__main__": 'Topic :: Software Development', 'Topic :: Utilities', ], - requires_python=metadata['requires-python'], + python_requires=metadata['requires-python'], install_requires=[ "appdirs", "argcomplete",