https://github.com/AuReMe/metage2metabo
Revision d3e6d4066c7319d3d6c7e24fae29d9c81c867bba authored by Arnaud Belcour on 14 February 2020, 14:43:30 UTC, committed by Arnaud Belcour on 14 February 2020, 14:43:30 UTC
If there is no log_error.txt file the log will return an error.
1 parent 6a491f5
Raw File
Tip revision: d3e6d4066c7319d3d6c7e24fae29d9c81c867bba authored by Arnaud Belcour on 14 February 2020, 14:43:30 UTC
Fix issue introduced in previous commit.
Tip revision: d3e6d40
.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