swh:1:snp:122bde0cb0e54f3d002c308e151c63f07e45e6be
Raw File
Tip revision: 4e94bc42eebcd34c3c4c56447064b0ea65a1c811 authored by Ruth-Huang6012 on 19 March 2024, 13:25:49 UTC
Fixed bug in integrator_whfast512.c (#760)
Tip revision: 4e94bc4
.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

build: 
  os: "ubuntu-22.04"
  tools:
    python: "3.11"
  jobs:
    post_build:
      - mkdir -p $READTHEDOCS_OUTPUT/html/emscripten_c_examples/
      - git clone https://github.com/emscripten-core/emsdk.git
      - emsdk/emsdk install latest
      - emsdk/emsdk activate latest
      - bash docs/c_examples/compile_emcc.bash

mkdocs:
  configuration: mkdocs.yml

python:
   install:
   - requirements: docs/requirements.txt
back to top