From 101e5aacdab51926cc3a7baad6b1e7af692a2daa Mon Sep 17 00:00:00 2001 From: Navin Karkera Date: Tue, 30 Jul 2024 20:26:25 +0530 Subject: [PATCH] fix: remove support for 3.8 --- .github/workflows/ci.yml | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00027e5..6d5f87d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-20.04] - python-version: [3.8, 3.11, 3.12] + python-version: [3.9, 3.11, 3.12] toxenv: [django42, quality, translations] steps: diff --git a/setup.py b/setup.py index c47372a..20528fd 100644 --- a/setup.py +++ b/setup.py @@ -117,7 +117,8 @@ def package_data(pkg, root_list): long_description_content_type='text/markdown', classifiers=[ 'Programming Language :: Python', - 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', 'Framework :: Django', @@ -130,5 +131,5 @@ def package_data(pkg, root_list): }, packages=['multi_problem_xblock'], package_data=package_data("multi_problem_xblock", ["static", "templates", "public", "translations"]), - python_requires=">=3.8", + python_requires=">=3.9", )