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 @@ -62,6 +62,7 @@ gh release create --target "$(git branch --show-current)" -t "$version" -n "$not
6262
6363git push --tags
6464
65- rm -fr dist
66- python setup.py build_html sdist bdist_wheel
65+ rm -fr build dist
66+ python -m sphinx -M html ./docs ./build/sphinx
67+ python setup.py sdist bdist_wheel
6768twine upload dist/*
Original file line number Diff line number Diff line change 127127# Add any paths that contain custom static files (such as style sheets) here,
128128# relative to this directory. They are copied after the builtin static files,
129129# so a file named "default.css" will overwrite the builtin "default.css".
130- html_static_path = ["_static" ]
130+ # html_static_path = ["_static"]
131131
132132# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
133133# using the given strftime format.
246246# texinfo_show_urls = 'footnote'
247247
248248# Example configuration for intersphinx: refer to the Python standard library.
249- intersphinx_mapping = {"http://docs.python.org/" : None }
249+ intersphinx_mapping = {
250+ "python" : ("https://python.readthedocs.org/en/latest/" , None ),
251+ }
Original file line number Diff line number Diff line change 1- [aliases]
2- build_html = build_sphinx -b html --build-dir docs
3-
41[flake8]
52# black uses 88 : ¯\_(ツ)_/¯
63max-line-length = 88
You can’t perform that action at this time.
0 commit comments