1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
========================
pip requirements files
========================
Index
=====
* :file:`requirements/default.txt`
Default requirements for Python 3.8+.
* :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 3.8 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
|