Skip to content

Commit

Permalink
Now depends on Kombu 4 from PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Oct 31, 2016
1 parent d854e07 commit 9fbd208
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 11 deletions.
2 changes: 2 additions & 0 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,8 @@ install the development requirements first:

$ pip install -U -r requirements/dev.txt

THIS REQUIREMENT FILE MAY NOT BE PRESENT, SKIP IF NOT FOUND.

Both the stable and the development version have testing related
dependencies, so install these next:

Expand Down
7 changes: 7 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,13 @@ Transports and Backends
:``celery[consul]``:
for using the Consul.io Key/Value store as a message transport or result backend (*experimental*).

:``celery[django]``
specifies the lowest version possible for Django support.

You should probably not use this in your requirements, it's here
for informational purposes only.


.. _celery-installing-from-source:

Downloading and installing from source
Expand Down
1 change: 0 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ init:
install:
- "powershell extra\\appveyor\\install.ps1"
- "%PYTHON%/Scripts/pip.exe install -U setuptools"
- "%PYTHON%/Scripts/pip.exe install -r requirements/dev.txt"

build: off

Expand Down
2 changes: 2 additions & 0 deletions docs/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,8 @@ install the development requirements first:
$ pip install -U -r requirements/dev.txt
THIS REQUIREMENT FILE MAY NOT BE PRESENT, SKIP IF NOT FOUND.

Both the stable and the development version have testing related
dependencies, so install these next:

Expand Down
2 changes: 1 addition & 1 deletion requirements/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Index
* :file:`requirements/dev.txt`

Requirement file installing the current dev branch of Celery and
dependencies.
dependencies (will not be present in stable branches).

Examples
========
Expand Down
2 changes: 1 addition & 1 deletion requirements/default.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pytz>dev
billiard>=3.5.0.1,<3.6.0
kombu>dev
kombu>=4.0,<5.0
1 change: 0 additions & 1 deletion requirements/dev.txt

This file was deleted.

1 change: 0 additions & 1 deletion requirements/docs.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
sphinx_celery>=1.3
typing
-r extras/sqlalchemy.txt
-r dev.txt
1 change: 0 additions & 1 deletion requirements/test-ci-base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ codecov
-r extras/redis.txt
-r extras/sqlalchemy.txt
-r extras/pymemcache.txt
-r dev.txt
5 changes: 0 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ deps=
sitepackages = False
recreate = False
commands =
pip install -U -r{toxinidir}/requirements/dev.txt
unit: py.test -xv
integration: py.test -xsv t/integration
setenv =
Expand All @@ -48,24 +47,20 @@ basepython =

[testenv:cov]
commands =
pip install -U -r{toxinidir}/requirements/dev.txt
py.test -xv --cov=celery --cov-report=xml
coverage xml
codecov -e TOXENV --token=bb6ecc30-6d40-4f57-942e-406f5f579198 --required

[testenv:apicheck]
commands =
pip install -U -r{toxinidir}/requirements/dev.txt
sphinx-build -b apicheck -d {envtmpdir}/doctrees docs docs/_build/apicheck

[testenv:configcheck]
commands =
pip install -U -r{toxinidir}/requirements/dev.txt
sphinx-build -b configcheck -d {envtmpdir}/doctrees docs docs/_build/configcheck

[testenv:linkcheck]
commands =
pip install -U -r{toxinidir}/requirements/dev.txt
sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck

[testenv:flake8]
Expand Down

0 comments on commit 9fbd208

Please sign in to comment.