File tree Expand file tree Collapse file tree 4 files changed +13
-7
lines changed Expand file tree Collapse file tree 4 files changed +13
-7
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+
3
+ build :
4
+ os : ubuntu-22.04
5
+ tools :
6
+ python : " 3.11"
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ gh release create --target "$(git branch --show-current)" -t "$version" -n "$not
63
63
64
64
git push --tags
65
65
66
- rm -fr dist
67
- python setup.py build_html sdist
66
+ rm -fr build dist
67
+ python -m sphinx -M html ./docs ./build/sphinx -W
68
+ python setup.py sdist
68
69
twine upload dist/*
Original file line number Diff line number Diff line change 131
131
# Add any paths that contain custom static files (such as style sheets) here,
132
132
# relative to this directory. They are copied after the builtin static files,
133
133
# so a file named "default.css" will overwrite the builtin "default.css".
134
- html_static_path = ["_static" ]
134
+ # html_static_path = ["_static"]
135
135
136
136
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
137
137
# using the given strftime format.
250
250
# texinfo_show_urls = 'footnote'
251
251
252
252
# Example configuration for intersphinx: refer to the Python standard library.
253
- intersphinx_mapping = {"http://docs.python.org/" : None }
253
+ intersphinx_mapping = {
254
+ "python" : ("https://python.readthedocs.org/en/latest/" , None ),
255
+ }
Original file line number Diff line number Diff line change 1
- [aliases]
2
- build_html = build_sphinx -b html --build-dir docs
3
-
4
1
[flake8]
5
2
extend-ignore = E203
6
3
# black uses 88 : ¯\_(ツ)_/¯
You can’t perform that action at this time.
0 commit comments