Skip to content

Commit

Permalink
chore: Drop support for Python 3.8
Browse files Browse the repository at this point in the history
Python 3.8 will end security support on 2024-10-31;
* Drop support for Python 3.8 in this plugin
* Update the Ubuntu base image to Jammy (22.04)
  • Loading branch information
Maari Tamm committed Oct 2, 2024
1 parent a327a8b commit 70c2b8b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Unreleased

* [Enhancement] Drop support for Python 3.8; update the Ubuntu base image to
"Ubuntu Jammy" (22.04).

When updating your plugin to this version, you'll need to rebuild the image.

## Version 3.3.0 (2024-07-31)

* [Enhancement] Support Tutor 18 and Open edX Redwood.
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def load_readme():
long_description_content_type='text/markdown',
packages=find_packages(exclude=["tests*"]),
include_package_data=True,
python_requires=">=3.8",
python_requires=">=3.9",
install_requires=["tutor <19, >=16.0.0"],
setup_requires=["setuptools-scm"],
entry_points={
Expand All @@ -39,7 +39,6 @@ def load_readme():
"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",
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
[tox]
envlist = gitlint,py{38,39,310,311,312},flake8
envlist = gitlint,py{39,310,311,312},flake8

[gh-actions]
python =
3.8: gitlint,py38,flake8
3.9: gitlint,py39,flake8
3.10: gitlint,py310,flake8
3.11: gitlint,py311,flake8
Expand Down
2 changes: 1 addition & 1 deletion tutorbackup/templates/backup/build/backup/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/ubuntu:20.04
FROM docker.io/ubuntu:22.04
ENV PYTHONUNBUFFERED 1

RUN apt-get update && \
Expand Down

0 comments on commit 70c2b8b

Please sign in to comment.