File tree Expand file tree Collapse file tree 3 files changed +33
-0
lines changed Expand file tree Collapse file tree 3 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Read the Docs configuration file for Sphinx projects
2
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
+
4
+ version : 2
5
+
6
+ build :
7
+ os : ubuntu-22.04
8
+ tools :
9
+ python : " 3.12"
10
+ jobs :
11
+ post_checkout :
12
+ - git fetch --unshallow
13
+ post_install :
14
+ - python setup.py build
15
+
16
+ sphinx :
17
+ configuration : doc/src/conf.py
18
+
19
+ python :
20
+ install :
21
+ - requirements : .rtd-require
Original file line number Diff line number Diff line change
1
+ git-props
2
+ pytest >=3.7.0
3
+ setuptools
4
+ sphinx_rtd_theme
Original file line number Diff line number Diff line change 6
6
# full list see the documentation:
7
7
# http://www.sphinx-doc.org/en/master/config
8
8
9
+ from pathlib import Path
10
+ import sys
11
+
12
+ maindir = Path (__file__ ).resolve ().parent .parent .parent
13
+ buildlib = maindir / "build" / "lib"
14
+ sys .path [0 ] = str (buildlib )
15
+ sys .dont_write_bytecode = True
16
+
9
17
import pytest_dependency
10
18
11
19
# -- Project information -----------------------------------------------------
You can’t perform that action at this time.
0 commit comments