Skip to content

Commit

Permalink
fix!: drop support of python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
farhan committed Jul 25, 2024
1 parent dba0568 commit bcbb112
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8', '3.11', '3.12']
toxenv: [py38-django42, quality]
python-version: ['3.11', '3.12']
toxenv: [py311-django42, quality]

steps:
- uses: actions/checkout@v3
Expand All @@ -36,7 +36,7 @@ jobs:
run: tox

- name: Run Coverage
if: matrix.python-version == '3.8' && matrix.toxenv=='py38-django42'
if: matrix.python-version == '3.11' && matrix.toxenv=='py311-django42'
uses: codecov/codecov-action@v4
with:
flags: unittests
Expand Down
3 changes: 2 additions & 1 deletion requirements/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@
# pin when possible. Writing an issue against the offending project and
# linking to it here is good.

backports.zoneinfo;python_version<"3.9"
# Common constraints for edx repos
-c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def package_data(pkg, roots):

setup(
name='feedback-xblock',
version='1.6.0',
version='2.0.0',
description='XBlock for providing feedback on course content',
long_description=README,
long_description_content_type='text/x-rst',
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[tox]
envlist = py{38,311,312}-django{42}, quality
envlist = py{311,312}-django{42}, quality
skip_missing_interpreters = true

[testenv]
allowlist_externals =
Expand Down

0 comments on commit bcbb112

Please sign in to comment.