Skip to content

Commit

Permalink
Merge pull request #112 from just-work/pyup-update-celery-5.0.5-to-5.1.0
Browse files Browse the repository at this point in the history
Update celery to 5.1.0
  • Loading branch information
tumb1er authored May 24, 2021
2 parents fe0878a + 3c219a3 commit 8e01169
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Celery==5.0.5
Celery==5.1.0
kombu==5.1.0
Django==3.2.3
factory-boy==3.2.0
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ def get_version():
https://gist.github.com/pwithnall/7bc5f320b3bdf418265a
"""
# noinspection PyUnresolvedReferences
git_dir = os.path.join(base_dir, '.git')
if os.path.isdir(git_dir):
# Get the version using "git describe".
Expand Down Expand Up @@ -74,7 +75,7 @@ def get_version():
description='Remote access from one system to models and functions of '
'another one using Celery machinery.',
install_requires=[
'celery >=3.1.5, <5.1.0',
'celery >=3.1.5, <5.2.0',
'jsonpickle >=0.8.0, <2.1.0',
'six',
# celery_rpc server still needs django and djangorestframework packages,
Expand All @@ -93,7 +94,7 @@ def get_version():
],
test_suite='runtests.runtests',
classifiers=[
'Development Status :: 1 - Planning',
'Development Status :: 6 - Mature',
'Environment :: Console',
'Intended Audience :: Developers',
'Framework :: Django',
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
envlist =
{py3.6,py3.7,py3.8,py3.9}-django302-{drf311,drf312}-{c31,c44,c50}
{py3.6,py3.7,py3.8,py3.9}-django301-{drf311,drf312}-{c31,c44,c50}
{py3.6,py3.7,py3.8,py3.9}-django300-{drf310,drf311,drf312}-{c31,c44,c50}
{py3.6,py3.7,py3.8,py3.9}-django302-{drf311,drf312}-{c31,c44,c50,c51}
{py3.6,py3.7,py3.8,py3.9}-django301-{drf311,drf312}-{c31,c44,c50,c51}
{py3.6,py3.7,py3.8,py3.9}-django300-{drf310,drf311,drf312}-{c31,c44,c50,c51}
{py3.5,py3.6,py3.7,py3.8}-django202-{drf310,drf311,drf312}-{c31,c44}
{py3.5,py3.6,py3.7,py3.8}-django201-{drf310,drf311}-{c31,c44}
{py3.5,py3.6,py3.7,py3.8}-django200-{drf310,drf311}-{c31,c44}
Expand Down Expand Up @@ -75,4 +75,5 @@ deps =
c31: celery<4.0
c44: celery>=4.4,<4.5
c50: celery>=5.0,<5.1
c51: celery>=5.1,<5.2
commands = python setup.py test

0 comments on commit 8e01169

Please sign in to comment.