Skip to content

Commit

Permalink
fix: remove support for 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
navinkarkera committed Jul 30, 2024
1 parent af054f8 commit 101e5aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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",
)

0 comments on commit 101e5aa

Please sign in to comment.