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

Include latest Celery release. #14

Merged
merged 2 commits into from May 8, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -24,6 +24,8 @@ matrix:
- python: '3.6'
env: TOXENV=flake8
stage: lint
allow_failures:
- env: CELERY_VERSION=master
before_install:
# If TOXENV is not set, build it from the Python and Celery versions.
- if [[ -v CELERY_VERSION ]]; then export TOXENV=${TRAVIS_PYTHON_VERSION}-celery${CELERY_VERSION}; fi; env
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
{2.7,pypy,3.4,3.5,3.6,3.7,pypy3}-celery{40,41,42,master}
{2.7,pypy,3.4,3.5,3.6,3.7,pypy3}-celery{40,41,42,43,master}
flake8

[testenv]
Expand All @@ -12,6 +12,7 @@ deps=
celery40: kombu<4.2
celery41: celery>=4.1,<4.2
celery42: celery>=4.2,<4.3
celery43: celery>=4.3,<4.4
celerymaster: https://codeload.github.com/celery/celery/zip/master

flake8: -r{toxinidir}/requirements/pkgutils.txt
Expand Down