https://github.com/AuReMe/metage2metabo
Revision 86b3e785438a27717a6b7495764cdac21247360c authored by Arnaud Belcour on 21 April 2020, 13:17:10 UTC, committed by Arnaud Belcour on 21 April 2020, 13:17:10 UTC
1 parent 811eada
Raw File
Tip revision: 86b3e785438a27717a6b7495764cdac21247360c authored by Arnaud Belcour on 21 April 2020, 13:17:10 UTC
Try to fix metacom test.
Tip revision: 86b3e78
.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

# Use conda to install biopython (requiring numpy, a C dependent package).
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