Ask Solem db18982876 Forgot to save requirements/test.txt před 12 roky
..
README.rst 043f867964 Clean up requirements před 12 roky
default-py3k.txt cdd8aa7cf6 Now depends on kombu 2.4.5 před 12 roky
default.txt cdd8aa7cf6 Now depends on kombu 2.4.5 před 12 roky
dev.txt 995ba059c1 Canonical repo moved to github.com/celery/celery před 12 roky
docs.txt 6d4a2bd12b Moves Sphinx-PyPy-Upload requirement from docs -> pkgutils před 13 roky
jython.txt a928de06ca Adds requirements/jython.txt před 13 roky
pkgutils.txt 57a723bd25 Flakeplus now on PyPi před 13 roky
py25.txt 703ae4b0b7 No longer depends on multiprocessing backport, only billiard před 13 roky
py26.txt d06ad3b85e Depends on the ordereddict module if python_version<2.7 před 13 roky
security.txt b9db4781a3 Backport of security from 3.0-devel před 13 roky
test-ci.txt 043f867964 Clean up requirements před 12 roky
test.txt db18982876 Forgot to save requirements/test.txt před 12 roky

README.rst

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


Index
=====

* :file:`requirements/default.txt`

Default requirements for Python 2.7+.

* :file:`requirements/default-py3k.txt`

Default requirements for Python 3.2+.

* :file:`requirements/py25.txt`

Extra requirements needed to run on Python 2.5.

* :file:`requirements/py26.txt`

Extra requirements needed to run on Python 2.6.

* :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.txt`

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

* :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 master branch of Celery and deps.


Examples
========

Running the tests using Python 2.5
----------------------------------

::

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