Skip to content

Commit

Permalink
Drop support for Celery 4.4. (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
clokep committed Jun 16, 2023
1 parent 4bfa240 commit 6c8907b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Maintenance

* Support Celery 5.3. (`#68 <https://github.com/clokep/celery-batches/pull/68>`_,
`#77 <https://github.com/clokep/celery-batches/pull/77>`_)
* Drop support for Celery < 5.0. (`#78 <https://github.com/clokep/celery-batches/pull/78>`_)
* Drop support for Python 3.7. (`#77 <https://github.com/clokep/celery-batches/pull/77>`_)

0.7 (2022-05-02)
Expand Down
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ celery-batches version runs on,
- Python (3.8, 3.9, 3.10)
- PyPy3 (7.6)

And is tested with Celery >= 4.4.
And is tested with Celery >= 5.0.

If you're running an older version of Python, you need to be running
an older version of celery-batches:
Expand All @@ -46,6 +46,7 @@ an older version of celery-batches:

- Celery < 4.0: Use `celery.contrib.batches` instead.
- Celery 4.0 - 4.3: celery-batches 0.3.
- Celery 4.4: celery-batches 0.7.

History
=======
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ project_urls =
[options]
packages =
celery_batches
install_requires = celery>=4.4,<5.3
install_requires = celery>=5.0,<5.3
python_requires = >=3.8

[flake8]
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
{pypy3,3.8,3.9}-celery{44,50,51,52,master}-unit,
{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,
# Integration tests.
Expand All @@ -18,7 +18,6 @@ python =
[testenv]
deps=
-r{toxinidir}/requirements/test.txt
celery44: celery>=4.4,<4.5
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.
Expand Down

0 comments on commit 6c8907b

Please sign in to comment.