https://github.com/alphaparrot/ExoPlaSim
Revision a64f5a786a0446bbfbbb5a6b3bc501fbe3a09019 authored by Adiv Paradise on 22 May 2023, 00:27:56 UTC, committed by Adiv Paradise on 22 May 2023, 00:27:56 UTC
1 parent 8a29d62
Raw File
Tip revision: a64f5a786a0446bbfbbb5a6b3bc501fbe3a09019 authored by Adiv Paradise on 22 May 2023, 00:27:56 UTC
Fixed bug in gcmt.spatialmath
Tip revision: a64f5a7
.readthedocs.yaml
# .readthedocs.yaml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Set the version of Python and other tools you might need
build:
  os: ubuntu-22.04
  tools:
    python: "3.9"
  apt_packages:
    - gfortran
  jobs:
    pre_install:
    - pip install "numpy>=1.16,<1.22" matplotlib scipy

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

# If using Sphinx, optionally build your docs in additional formats such as PDF
formats:
    - pdf
    - epub
    - htmlzip

# Optionally declare the Python requirements required to build your docs
python:
   install:
   - method: pip
     path: .
   - requirements: docs/requirements.txt
   
back to top