Skip to content

Commit 2ca8c69

Browse files
authored
Merge pull request #105 from openedx/farhan/drop-py-3.8
fix!: drop support of python 3.8
2 parents dba0568 + 6d1014d commit 2ca8c69

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
strategy:
1515
matrix:
1616
os: [ubuntu-20.04]
17-
python-version: ['3.8', '3.11', '3.12']
18-
toxenv: [py38-django42, quality]
17+
python-version: ['3.11', '3.12']
18+
toxenv: [django42, quality]
1919

2020
steps:
2121
- uses: actions/checkout@v3
@@ -36,7 +36,7 @@ jobs:
3636
run: tox
3737

3838
- name: Run Coverage
39-
if: matrix.python-version == '3.8' && matrix.toxenv=='py38-django42'
39+
if: matrix.python-version == '3.11' && matrix.toxenv=='py311-django42'
4040
uses: codecov/codecov-action@v4
4141
with:
4242
flags: unittests

requirements/constraints.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@
88
# pin when possible. Writing an issue against the offending project and
99
# linking to it here is good.
1010

11-
backports.zoneinfo;python_version<"3.9"
11+
# Common constraints for edx repos
12+
-c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def package_data(pkg, roots):
2424

2525
setup(
2626
name='feedback-xblock',
27-
version='1.6.0',
27+
version='2.0.0',
2828
description='XBlock for providing feedback on course content',
2929
long_description=README,
3030
long_description_content_type='text/x-rst',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{38,311,312}-django{42}, quality
2+
envlist = py{311,312}-django{42}, quality
33

44
[testenv]
55
allowlist_externals =

0 commit comments

Comments
 (0)