-
Notifications
You must be signed in to change notification settings - Fork 6
/
.readthedocs.yml
32 lines (30 loc) · 996 Bytes
/
.readthedocs.yml
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
30
31
32
version: 2
build:
os: ubuntu-22.04
tools:
python: "3.12"
jobs:
post_checkout:
- git fetch --unshallow || true
post_create_environment:
- python -m pip install --exists-action=w --no-cache-dir --no-deps sphinx-plantuml # remove after https://github.com/zqmillet/sphinx-plantuml/pull/4
- python -m pip install --exists-action=w --no-cache-dir -r requirements/docs.txt
- python -m pip install --exists-action=w --upgrade --upgrade-strategy only-if-needed --no-cache-dir .[ftp,ftps,hdfs,samba,s3,sftp,webdav,spark]
post_install:
# TODO: remove after upgrading autodoc-pydantic to v2
- python -m pip install --exists-action=w --no-cache-dir "sphinx<8"
# TODO: uncomment after https://github.com/zqmillet/sphinx-plantuml/pull/4
#python:
# install:
# - requirements: requirements/docs.txt
# - method: pip
# path: .
# extra_requirements:
# - ftp
# - ftps
# - hdfs
# - samba
# - s3
# - sftp
# - webdav
# - spark