https://github.com/hannorein/rebound
Revision c6fb36e93558498b54f5c335d7e7186ee198beb8 authored by Hanno Rein on 13 November 2023, 23:08:07 UTC, committed by Hanno Rein on 13 November 2023, 23:08:07 UTC
- Naming Convention
- Emscripten support
- Web server for visualization
- Minor bug fixes
1 parent 05f77f1
Raw File
Tip revision: c6fb36e93558498b54f5c335d7e7186ee198beb8 authored by Hanno Rein on 13 November 2023, 23:08:07 UTC
REBOUNDi Version 4.0.0
Tip revision: c6fb36e
.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