From 0c4ca12a36839c6670e64ba62003124e2baf306d Mon Sep 17 00:00:00 2001 From: Hina Khadim Date: Thu, 14 Nov 2024 18:08:09 +0500 Subject: [PATCH] chore: remove python 3.8 references (#103) --- .github/workflows/test.yml | 4 ++-- changelog.d/20241113_222629_hina.khadim.md | 1 + setup.py | 3 +-- 3 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 changelog.d/20241113_222629_hina.khadim.md diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 829f6137d..5536174ad 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,10 +9,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Set up Python 3.8 + - name: Set up Python 3.9 uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.9 - name: Upgrade pip run: python -m pip install --upgrade pip setuptools - name: Install dependencies diff --git a/changelog.d/20241113_222629_hina.khadim.md b/changelog.d/20241113_222629_hina.khadim.md new file mode 100644 index 000000000..24bce687e --- /dev/null +++ b/changelog.d/20241113_222629_hina.khadim.md @@ -0,0 +1 @@ +- 💥 [Deprecation] Drop support for python 3.8 and set Python 3.9 as the minimum supported python version. (by @hinakhadim) \ No newline at end of file diff --git a/setup.py b/setup.py index fbf4c6387..6cdca5a7e 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ def load_about(): long_description_content_type="text/x-rst", packages=find_packages(exclude=["tests*"]), include_package_data=True, - python_requires=">=3.8", + python_requires=">=3.9", install_requires=["tutor>=18.0.0,<19.0.0", "tutor-mfe>=18.0.0,<19.0.0"], extras_require={"dev": "tutor[dev]>=18.0.0,<19.0.0"}, entry_points={"tutor.plugin.v1": ["indigo = tutorindigo.plugin"]}, @@ -54,7 +54,6 @@ def load_about(): "License :: OSI Approved :: GNU Affero General Public License v3", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",