Skip to content

Commit

Permalink
chore: python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
luisfelipec95 committed Jan 16, 2025
1 parent 40b45b5 commit 62a0efb
Show file tree
Hide file tree
Showing 3 changed files with 6 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 @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.11']
python-version: ['3.8', 3.11']
toxenv: [quality, docs, django42]

steps:
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def package_data(pkg, roots):

include_package_data=True,
install_requires=load_requirements('requirements/base.in'),
python_requires=">=3.11",
python_requires=">=3.8",
license="AGPL 3.0",
zip_safe=False,
keywords='Python edx',
Expand All @@ -169,7 +169,10 @@ def package_data(pkg, roots):
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Framework :: Django',
'Framework :: Django :: 4.2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.11',
],
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{311}-django{42}, quality, docs
envlist = py{38, 311}-django{42}, quality, docs
skipsdist = true

[doc8]
Expand Down

0 comments on commit 62a0efb

Please sign in to comment.