File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3636 echo "__version__ = '$version'" | tee trakt/__version__.py
3737 python -c "from trakt import __version__; print(__version__)"
3838
39- # Install deps and build docs
40- pip install -r requirements.txt
41- sudo apt install sphinx
39+ # Install deps
40+ python -m pip install --upgrade pip
41+ python -m pip install -r requirements.txt
42+ python -m pip install 'sphinx>=7.1.0'
43+
44+ # Build docs
4245 make docs
4346
4447# vim:ts=2:sw=2:et
Original file line number Diff line number Diff line change @@ -44,15 +44,19 @@ jobs:
4444
4545 - name : Install dependencies and build docs
4646 run : |
47+ set -eux
48+
4749 # Setup version
4850 version=$(git describe --tags --abbrev=0)
49- echo "__version__ = '$version'" > trakt/__version__.py
50- cat trakt/__version__.py
51+ echo "__version__ = '$version'" | tee trakt/__version__.py
5152 python -c "from trakt import __version__; print(__version__)"
5253
53- # Install deps and build docs
54- pip install -r requirements.txt
55- sudo apt install sphinx
54+ # Install deps
55+ python -m pip install --upgrade pip
56+ python -m pip install -r requirements.txt
57+ python -m pip install 'sphinx>=7.1.0'
58+
59+ # Build docs
5660 make docs
5761
5862 - name : Setup Pages
You can’t perform that action at this time.
0 commit comments