Skip to content

Commit

Permalink
refactor: remove the tests for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
luisfelipec95 committed Dec 18, 2024
1 parent 7255afc commit 2cbe2f1
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
max-parallel: 2
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.11"]
django: ["42"]
steps:
- name: Checkout
Expand Down
10 changes: 4 additions & 6 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ amqp==5.3.1
# via kombu
asgiref==3.8.1
# via django
attrs==24.2.0
attrs==24.3.0
# via openedx-events
billiard==4.2.1
# via celery
Expand Down Expand Up @@ -63,12 +63,10 @@ fastavro==1.9.7
# via openedx-events
kombu==5.4.2
# via celery
newrelic==10.3.1
newrelic==10.4.0
# via edx-django-utils
openedx-events==9.15.0 ; python_version >= "3.11"
# via
# -c requirements/constraints.txt
# -r requirements/base.in
openedx-events==9.15.0
# via -r requirements/base.in
pbr==6.1.0
# via stevedore
prompt-toolkit==3.0.48
Expand Down
6 changes: 0 additions & 6 deletions requirements/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,3 @@ celery>=5.2.2,<6.0.0

# backports.zoneinfo is only needed for Python < 3.9
backports.zoneinfo; python_version<'3.9'

astroid==3.2.4; python_version >= '3.9'
coverage==7.6.9; python_version >= '3.9'
dnspython==2.7.0 ; python_version >= '3.9'
openedx-events==9.15.0 ; python_version >= '3.11'
pylint<=3.2.7
31 changes: 11 additions & 20 deletions requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@ asgiref==3.8.1
# via
# -r requirements/base.txt
# django
astroid==3.2.4 ; python_version >= "3.9"
astroid==3.3.6
# via pylint
# via
# -c requirements/constraints.txt
attrs==24.2.0
attrs==24.3.0
# via
# -r requirements/base.txt
# openedx-events
Expand All @@ -28,7 +26,7 @@ celery==5.4.0
# via
# -c requirements/constraints.txt
# -r requirements/base.txt
certifi==2024.8.30
certifi==2024.12.14
# via requests
cffi==1.17.1
# via
Expand Down Expand Up @@ -56,10 +54,8 @@ click-repl==0.3.0
# via
# -r requirements/base.txt
# celery
coverage==7.6.9 ; python_version >= "3.9"
# via
# -c requirements/constraints.txt
# -r requirements/test.in
coverage==7.6.9
# via -r requirements/test.in
dill==0.3.9
# via pylint
# via
Expand All @@ -80,9 +76,8 @@ django-waffle==4.2.0
# edx-django-utils
djangorestframework==3.15.2
# via -r requirements/base.txt
dnspython==2.7.0 ; python_version >= "3.9"
dnspython==2.7.0
# via
# -c requirements/constraints.txt
# -r requirements/base.txt
# pymongo
edx-ccx-keys==2.0.2
Expand Down Expand Up @@ -116,14 +111,12 @@ mccabe==0.7.0
# via pylint
mock==5.1.0
# via -r requirements/test.in
newrelic==10.3.1
newrelic==10.4.0
# via
# -r requirements/base.txt
# edx-django-utils
openedx-events==9.15.0 ; python_version >= "3.11"
# via
# -c requirements/constraints.txt
# -r requirements/base.txt
openedx-events==9.15.0
# via -r requirements/base.txt
packaging==24.2
# via pytest
pbr==6.1.0
Expand All @@ -148,10 +141,8 @@ pycparser==2.22
# via
# -r requirements/base.txt
# cffi
pylint==3.2.7
# via
# -c requirements/constraints.txt
# -r requirements/test.in
pylint==3.3.2
# via -r requirements/test.in
pymongo==4.10.1
# via
# -r requirements/base.txt
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{38, 311}-django{42}
envlist = py{311}-django{42}


[testenv]
Expand Down

0 comments on commit 2cbe2f1

Please sign in to comment.