this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

GHA: let's try that again

+8 -4
+1 -1
.github/workflows/build-docs.yml
··· 14 14 python-version: '3.11' 15 15 - name: Install atmst python module 16 16 run: | 17 - python3 -m pip install . 17 + python3 -m pip install .[docs] 18 18 - name: Build the docs 19 19 run: | 20 20 cd ./docs/
+7 -3
pyproject.toml
··· 1 1 [build-system] 2 2 requires = [ 3 3 "setuptools>=61.0", 4 - "sphinx", 5 - "sphinx-rtd-theme", 6 - "sphinxcontrib-jquery", 7 4 ] 8 5 build-backend = "setuptools.build_meta" 9 6 ··· 25 22 "dag-cbor", 26 23 "multiformats", 27 24 "more-itertools", 25 + ] 26 + 27 + [project.optional-dependencies] 28 + docs = [ 29 + "sphinx", 30 + "sphinx-rtd-theme", 31 + "sphinxcontrib-jquery", 28 32 ] 29 33 30 34 [project.urls]