2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-05 01:36:39 +08:00
artiq/conda/artiq-doc.yaml
Robert Jordens 69b2d1abfc conda/artiq-dev: fix channel list
Now, with conda 4.1 packages are sorted by channel, version, build
number in decreasing priority. The highest matching package is
taken. https://conda.io/docs/user-guide/tasks/manage-channels.html

For the artiq-dev environment, the m-labs/label/dev channel should be
first, then the main channel, then defaults, and then conda-forge
(community supported packages).

closes #864
2017-12-07 12:31:30 +01:00

16 lines
366 B
YAML

# conda description for an environment to build artiq documentation
# $ conda env create -f conda/artiq-doc.yaml
name: artiq-doc
channels:
- m-labs/label/dev
- m-labs/label/main
- defaults
- conda-forge/label/main
dependencies:
- python>=3.5.3,<3.6
- sphinx=1.4.8
- sphinx-argparse
- sphinxcontrib-wavedrom
- sphinx_rtd_theme
- pythonparser>=1.1