Asif Saifuddin Auvi 38673412f3 remove jython support (#4776) il y a 6 ans
..
deps 02c977d64d drop as not needed anymore il y a 6 ans
extras 83cecb8ad1 Add couchbase dependency to CI + Python 3/PyPy fixes (#4313) il y a 6 ans
README.rst 9fbd208c78 Now depends on Kombu 4 from PyPI il y a 8 ans
default.txt 1a941f97ad [WIP] import from asynchronous instead of async and fix python 3.7 compat issues (#4679) il y a 6 ans
docs.txt d178dbbe4f Enable building docs in the Docker image (includes Sphinx version bump to 1.7.1) (#4729) il y a 6 ans
pkgutils.txt 069ed5434e Signal before_task_publish not doing what documented (#4035) il y a 7 ans
security.txt d4d37b002c Cleanup requirements il y a 9 ans
test-ci-base.txt 56b94c3272 Prettify test output. il y a 6 ans
test-ci-default.txt 83cecb8ad1 Add couchbase dependency to CI + Python 3/PyPy fixes (#4313) il y a 6 ans
test-integration.txt 9c950b47ec AWS DynamoDB result backend (#3736) il y a 7 ans
test-pypy3.txt d4d37b002c Cleanup requirements il y a 9 ans
test.txt acf850643d Downgrade pytest to a version below 3.3 since the new log capture feature breaks our tests. il y a 6 ans

README.rst

========================
pip requirements files
========================


Index
=====

* :file:`requirements/default.txt`

Default requirements for Python 2.7+.

* :file:`requirements/jython.txt`

Extra requirements needed to run on Jython 2.5

* :file:`requirements/security.txt`

Extra requirements needed to use the message signing serializer,
see the Security Guide.

* :file:`requirements/test.txt`

Requirements needed to run the full unittest suite.

* :file:`requirements/test-ci-base.txt`

Extra test requirements required by the CI suite (Tox).

* :file:`requirements/test-ci-default.txt`

Extra test requirements required for Python 2.7 by the CI suite (Tox).

* :file:`requirements/test-integration.txt`

Extra requirements needed when running the integration test suite.

* :file:`requirements/doc.txt`

Extra requirements required to build the Sphinx documentation.

* :file:`requirements/pkgutils.txt`

Extra requirements required to perform package distribution maintenance.

* :file:`requirements/dev.txt`

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

Examples
========

Installing requirements
-----------------------

::

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


Running the tests
-----------------

::

$ pip install -U -r requirements/default.txt
$ pip install -U -r requirements/test.txt