forked from pacman82/arrow-odbc-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.readthedocs.yaml
29 lines (25 loc) · 878 Bytes
/
.readthedocs.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# https://docs.readthedocs.io/en/stable/config-file/v2.html#supported-settings
version: 2
sphinx:
builder: html
configuration: doc/source/conf.py
build:
os: "ubuntu-20.04"
tools:
python: "3.10"
# Rust 1.61 is not recent enough to build the latest arrow
# rust: "1.61"
apt_packages:
# We link against unixodbc during building the wheel
- unixodbc-dev
jobs:
post_system_dependencies:
# Since the version in `tools` is not recent enough, we install Rust here manually
- asdf install rust latest # Install the latest rust version
- asdf global rust latest # Add cargo to $PATH so the build can find it
python:
install:
# We need a addionatal python dependencies for building the documentation. I.e. The Sphinx Theme
- requirements: doc/requirements.txt
- method: pip
path: .