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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.11', '3.12']
python-version: ['3.12']
toxenv: [quality, docs, django42, django52]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_pypi.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.11
python-version: 3.12

- name: Install pip
run: pip install -r requirements/pip.txt
Expand Down
2 changes: 1 addition & 1 deletion celery_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Code to support working with celery.
"""

__version__ = '1.4.0'
__version__ = '2.0.0'
30 changes: 17 additions & 13 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,57 +1,61 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# make upgrade
#
amqp==5.3.1
# via kombu
asgiref==3.8.1
asgiref==3.11.1
# via django
billiard==4.2.1
billiard==4.2.4
# via celery
celery==5.5.1
celery==5.6.2
# via
# -c requirements/constraints.txt
# -r requirements/base.in
click==8.1.8
click==8.3.1
# via
# celery
# click-didyoumean
# click-plugins
# click-repl
click-didyoumean==0.3.1
# via celery
click-plugins==1.1.1
click-plugins==1.1.1.2
# via celery
click-repl==0.3.0
# via celery
django==4.2.20
django==5.2.12
# via
# -c requirements/common_constraints.txt
# -r requirements/base.in
# django-model-utils
# jsonfield
django-model-utils==5.0.0
# via -r requirements/base.in
jsonfield==3.1.0
jsonfield==3.2.0
# via -r requirements/base.in
kombu==5.5.3
kombu==5.6.2
# via celery
prompt-toolkit==3.0.51
packaging==26.0
# via kombu
prompt-toolkit==3.0.52
# via click-repl
python-dateutil==2.9.0.post0
# via celery
six==1.17.0
# via python-dateutil
sqlparse==0.5.3
sqlparse==0.5.5
# via django
tzdata==2025.2
tzdata==2025.3
# via kombu
tzlocal==5.3.1
# via celery
vine==5.1.0
# via
# amqp
# celery
# kombu
wcwidth==0.2.13
wcwidth==0.6.0
# via prompt-toolkit
10 changes: 5 additions & 5 deletions requirements/celery50.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
amqp==5.3.1
billiard==4.2.1
celery==5.5.1
click==8.1.8
billiard==4.2.4
celery==5.6.2
click==8.3.1
click-didyoumean==0.3.1
click-repl==0.3.0
kombu==5.5.3
prompt-toolkit==3.0.51
kombu==5.6.2
prompt-toolkit==3.0.52
vine==5.1.0
28 changes: 16 additions & 12 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
@@ -1,34 +1,38 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# make upgrade
#
cachetools==5.5.2
# via tox
chardet==5.2.0
cachetools==7.0.3
# via tox
colorama==0.4.6
# via tox
distlib==0.3.9
distlib==0.4.0
# via virtualenv
filelock==3.18.0
filelock==3.25.0
# via
# python-discovery
# tox
# virtualenv
packaging==25.0
packaging==26.0
# via
# pyproject-api
# tox
platformdirs==4.3.7
platformdirs==4.9.4
# via
# python-discovery
# tox
# virtualenv
pluggy==1.5.0
pluggy==1.6.0
# via tox
pyproject-api==1.10.0
# via tox
pyproject-api==1.9.0
python-discovery==1.1.0
# via virtualenv
tomli-w==1.2.0
# via tox
tox==4.25.0
tox==4.49.0
# via -r requirements/ci.in
virtualenv==20.30.0
virtualenv==21.1.0
# via tox
13 changes: 1 addition & 12 deletions requirements/common_constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,9 @@
# this file from Github directly. It does not require packaging in edx-lint.

# using LTS django version
Django<5.0
Django<6.0

# elasticsearch>=7.14.0 includes breaking changes in it which caused issues in discovery upgrade process.
# elastic search changelog: https://www.elastic.co/guide/en/enterprise-search/master/release-notes-7.14.0.html
# See https://github.com/openedx/edx-platform/issues/35126 for more info
elasticsearch<7.14.0

# django-simple-history>3.0.0 adds indexing and causes a lot of migrations to be affected
django-simple-history==3.0.0

# Cause: https://github.com/openedx/edx-lint/issues/458
# This can be unpinned once https://github.com/openedx/edx-lint/issues/459 has been resolved.
pip<24.3

# Cause: https://github.com/openedx/edx-lint/issues/475
# This can be unpinned once https://github.com/openedx/edx-lint/issues/476 has been resolved.
urllib3<2.3.0
Loading