From bcf057e7df8a3053381f32da2c7b52ee72cdb5ae Mon Sep 17 00:00:00 2001 From: Florian Schanda Date: Thu, 27 Apr 2023 15:15:44 +0200 Subject: [PATCH] Update minimum Python required to 3.7 --- .github/workflows/ci.yaml | 2 +- setup_agpl.py | 2 +- setup_gpl.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index aa1f1d78..532ccff7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,7 +11,7 @@ jobs: - name: Setup tools uses: actions/setup-python@v1 with: - python-version: 3.6 + python-version: 3.7 - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/setup_agpl.py b/setup_agpl.py index 9828753e..02f16751 100644 --- a/setup_agpl.py +++ b/setup_agpl.py @@ -25,7 +25,7 @@ license="GNU Affero General Public License v3", packages=["miss_hit"], install_requires=["miss_hit_core==%s" % miss_hit_core.version.VERSION], - python_requires=">=3.6, <4", + python_requires=">=3.7, <4", classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Developers", diff --git a/setup_gpl.py b/setup_gpl.py index 1240a7a3..d4ec0643 100644 --- a/setup_gpl.py +++ b/setup_gpl.py @@ -24,7 +24,7 @@ }, license="GNU General Public License v3", packages=["miss_hit_core"], - python_requires=">=3.6, <4", + python_requires=">=3.7, <4", package_data = { "miss_hit_core": ["resources/*.css", "resources/assets/*"], },