Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Celery 5.3 & Python 3.11 #75

Merged
merged 2 commits into from
Jun 27, 2023
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/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "pypy-3.8"]
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy-3.8"]

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Operating System :: OS Independent
Expand Down
8 changes: 5 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ envlist =
{pypy3,3.8,3.9}-celery{50,51,52,master}-unit,
# Celery 5.2 added support for Python 3.10.
3.10-celery{52,53,master}-unit,
# Celery 5.3 added support for Python 3.11.
3.11-celery{53,master}-unit,
clokep marked this conversation as resolved.
Show resolved Hide resolved
# Integration tests.
3.10-celery52-integration-{rabbitmq,redis},
flake8
Expand All @@ -14,15 +16,15 @@ python =
3.8: 3.8
3.9: 3.9
3.10: 3.10
3.11: 3.11

[testenv]
deps=
-r{toxinidir}/requirements/test.txt
celery50: celery>=5.0,<5.1
celery51: celery>=5.1,<5.2
# pypy3 seems to only have celery 5.2.0b3 available and not the final release.
celery52: celery>=5.2.0b3,<5.3
celery53: celery>=5.3.0a1,<5.4
celery52: celery>=5.2.0,<5.3
celery53: celery>=5.3.0,<5.4
celerymaster: https://codeload.github.com/celery/celery/zip/master

# By default celery (via kombu) install py-amqp.
Expand Down