Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
matrix:
os: [ubuntu-latest]
python-version:
- '3.8'
- '3.11'
- '3.12'
toxenv: [django42-celery53-drflatest,
Expand All @@ -38,7 +37,7 @@ jobs:
run: tox

- name: Run coverage
if: matrix.python-version == '3.8' && matrix.toxenv == 'django42-celery53-drflatest'
if: matrix.python-version == '3.11' && matrix.toxenv == 'django42-celery53-drflatest'
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: setup python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.11

- name: Install pip
run: pip install -r requirements/pip.txt
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ sphinx:
build:
os: ubuntu-22.04
tools:
python: "3.8"
python: "3.11"

python:
install:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ Change Log
Unreleased
~~~~~~~~~~

[3.3.0] - 2025-02-13
~~~~~~~~~~~~~~~~~~~~

Removed
+++++++
* Removed `python 3.8` support
* Updated requirements with `python 3.11` env

[3.2.0] - 2024-03-12
~~~~~~~~~~~~~~~~~~~~

Expand Down
9 changes: 5 additions & 4 deletions pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
# SERIOUSLY.
#
# ------------------------------
# Generated by edx-lint version: 5.3.1
# Generated by edx-lint version: 5.4.1
# ------------------------------
[MASTER]
ignore = migrations
Expand Down Expand Up @@ -288,7 +288,8 @@ disable =

logging-fstring-interpolation,
django-not-configured,
unsupported-binary-operation
unsupported-binary-operation,
too-many-positional-arguments

[REPORTS]
output-format = text
Expand Down Expand Up @@ -383,6 +384,6 @@ ext-import-graph =
int-import-graph =

[EXCEPTIONS]
overgeneral-exceptions = Exception
overgeneral-exceptions = builtins.Exception

# 80e9e4b858f4399b3fad5a96692a60a82815c249
# 6f08c1b2e75573dd207a6f6ff8a235ff6b260845
3 changes: 2 additions & 1 deletion pylintrc_tweaks
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ load-plugins = edx_lint.pylint,pylint_django,pylint_celery
[MESSAGES CONTROL]
disable+ =
django-not-configured,
unsupported-binary-operation
unsupported-binary-operation,
too-many-positional-arguments
43 changes: 16 additions & 27 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,27 +1,20 @@
#
# This file is autogenerated by pip-compile with Python 3.8
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# make upgrade
#
amqp==5.2.0
amqp==5.3.1
# via kombu
asgiref==3.8.1
# via django
backports-zoneinfo[tzdata]==0.2.1 ; python_version < "3.9"
# via
# -c requirements/constraints.txt
# celery
# django
# djangorestframework
# kombu
billiard==4.2.0
billiard==4.2.1
# via celery
celery==5.4.0
# via
# -c requirements/constraints.txt
# -r requirements/base.in
click==8.1.7
click==8.1.8
# via
# celery
# click-didyoumean
Expand All @@ -33,47 +26,43 @@ click-plugins==1.1.1
# via celery
click-repl==0.3.0
# via celery
django==4.2.13
django==4.2.19
# via
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
# -r requirements/base.in
# django-model-utils
# djangorestframework
# drf-yasg
django-model-utils==4.5.1
django-model-utils==5.0.0
# via -r requirements/base.in
djangorestframework==3.15.2
# via
# -r requirements/base.in
# drf-yasg
drf-yasg==1.21.7
drf-yasg==1.21.8
# via -r requirements/base.in
inflection==0.5.1
# via drf-yasg
kombu==5.3.7
kombu==5.4.2
# via celery
packaging==24.1
packaging==24.2
# via drf-yasg
prompt-toolkit==3.0.47
prompt-toolkit==3.0.50
# via click-repl
python-dateutil==2.9.0.post0
# via celery
pytz==2024.1
pytz==2025.1
# via drf-yasg
pyyaml==6.0.1
pyyaml==6.0.2
# via drf-yasg
six==1.16.0
six==1.17.0
# via python-dateutil
sqlparse==0.5.0
sqlparse==0.5.3
# via django
typing-extensions==4.12.2
# via
# asgiref
# kombu
tzdata==2024.1
tzdata==2025.1
# via
# backports-zoneinfo
# celery
# kombu
uritemplate==4.1.1
# via drf-yasg
vine==5.1.0
Expand Down
24 changes: 10 additions & 14 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
@@ -1,40 +1,36 @@
#
# This file is autogenerated by pip-compile with Python 3.8
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# make upgrade
#
cachetools==5.3.3
cachetools==5.5.1
# via tox
chardet==5.2.0
# via tox
colorama==0.4.6
# via tox
coverage==7.5.3
coverage==7.6.12
# via -r requirements/ci.in
distlib==0.3.8
distlib==0.3.9
# via virtualenv
filelock==3.15.4
filelock==3.17.0
# via
# tox
# virtualenv
packaging==24.1
packaging==24.2
# via
# pyproject-api
# tox
platformdirs==4.2.2
platformdirs==4.3.6
# via
# tox
# virtualenv
pluggy==1.5.0
# via tox
pyproject-api==1.7.1
pyproject-api==1.9.0
# via tox
tomli==2.0.1
# via
# pyproject-api
# tox
tox==4.15.1
tox==4.24.1
# via -r requirements/ci.in
virtualenv==20.26.3
virtualenv==20.29.2
# via tox
2 changes: 0 additions & 2 deletions requirements/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,3 @@
-c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt

celery<6.0

backports.zoneinfo;python_version<"3.9"
Loading