Last active
March 8, 2019 22:38
-
-
Save epassaro/efdc15d05faf177df7ca3ff19308f436 to your computer and use it in GitHub Desktop.
Workflow suggested by @chrisburr in https://github.com/conda-forge/staged-recipes/pull/7934#issuecomment-470905001
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This should do the trick: | |
# $ conda build tardis | |
# $ conda install /path/to/local/package [is this step neccessary?] | |
# $ conda env create -f tardis_env3.yml | |
# Maybe rename this env to tardis_dev or something? | |
name: tardis | |
channels: | |
# 'local' channel must be top priority | |
- local | |
- conda-forge | |
# is 'main' channel neccesary? | |
- main | |
dependencies: | |
# Local package of TARDIS | |
- tardis | |
# Analysis | |
- jupyter | |
- notebook | |
- matplotlib | |
- graphviz | |
- pygraphviz | |
# Documentation | |
- sphinx | |
- nbconvert | |
- numpydoc | |
- docutils | |
- nbformat | |
- nbsphinx | |
- sphinx_bootstrap_theme | |
- sphinxcontrib-bibtex | |
- sphinx_rtd_theme | |
#Test/Coverage requirements | |
- git-lfs | |
- pytest | |
- pytest-html | |
- requests | |
- coverage | |
- docopt | |
- pytest-cov | |
- codecov | |
- pip: | |
# Documentation | |
- sphinxcontrib-tikz | |
- dokuwiki | |
- dot2tex | |
- sphinx-jsonschema | |
- git+https://github.com/Naereen/dot2tex.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment