repo2docker/tests/conda/requirements
Tim Head 8b004e06dc Apply auto formatting
Apologies to anyone finding this commit via git blame or log

run the autoformatting by

    pre-commit run --all-files
2019-06-03 21:37:25 +02:00
..
README.rst improving readmes for tests 2018-04-24 17:14:01 -07:00
environment.yml don't install requirements.txt if environment.yml is present 2017-09-07 13:21:23 +02:00
requirements.txt Allow specifying requirements.txt with environment.yml 2017-07-30 05:15:07 -07:00
verify Apply auto formatting 2019-06-03 21:37:25 +02:00

README.rst

Conda - Mixed Requirements
--------------------------

An ``environment.yml`` file takes precedence over ``requirements.txt``.
To install Python packages into a conda environment with pip, use the
``pip`` key in ``environment.yml``:

.. sourcecode:: yaml

    dependencies:
      - numpy
      - pip:
        - tornado