Skip to content

Commit

Permalink
fix readthedocs dependencies installation (#63)
Browse files Browse the repository at this point in the history
* fix readthedocs dependencies installation

* add apt_packages
  • Loading branch information
thijstriemstra committed Sep 1, 2023
1 parent 596d373 commit 7f1d311
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .readthedocs.yaml
Expand Up @@ -10,13 +10,24 @@ build:
os: ubuntu-22.04
tools:
python: "3.11"
apt_packages:
- graphviz
- libsdl2-dev
- libsdl2-image-dev
- libsdl2-ttf-dev
- libfreetype6-dev
- libjpeg-dev
- python3-dev
- python3-numpy

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

# We recommend specifying your dependencies to enable reproducible builds:
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
# Install dependencies
python:
install:
- requirements: docs
- method: pip
path: .
extra_requirements:
- docs

0 comments on commit 7f1d311

Please sign in to comment.