https://github.com/AuReMe/metage2metabo
Revision 55fc792c433b5d9695c7992c9619044d92023c89 authored by Arnaud Belcour on 06 June 2019, 13:58:52 UTC, committed by Arnaud Belcour on 06 June 2019, 13:58:52 UTC
1 parent 7fc8d89
Raw File
Tip revision: 55fc792c433b5d9695c7992c9619044d92023c89 authored by Arnaud Belcour on 06 June 2019, 13:58:52 UTC
Fix python3.6 in conda.
Tip revision: 55fc792
.readthedocs.yml
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Build documentation in the docs/ directory with Sphinx
sphinx:
  configuration: docs/conf.py

conda:
  environment: docs/environment.yml

# Optionally set the version of Python and requirements required to build your docs
python:
  version: 3.6
  install:
    - requirements: docs/requirements.txt
    - method: pip
      path: .
back to top