File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,14 +35,14 @@ jobs:
3535 steps :
3636 - name : Checkout source
3737 uses : actions/checkout@v2
38- - name : Set up Python 3.7
38+ - name : Set up Python 3.8
3939 uses : actions/setup-python@v1
4040 with :
41- python-version : 3.7
41+ python-version : " 3.8 "
4242 - name : Build package
4343 run : |
44- pip install wheel
45- python setup.py sdist bdist_wheel
44+ pip install build
45+ python -m build
4646 - name : Publish
4747 uses : pypa/gh-action-pypi-publish@v1.1.0
4848 with :
Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ ## v0.1.0
4+
5+ ([ full changelog] ( https://github.com/executablebooks/sphinx-thebe/compare/v0.0.10...4d1a60c5126ce633b1a36de43b4990b2f4d08730 ) )
6+
7+ ** Lazy load thebe javascript** [ #41 ] ( https://github.com/executablebooks/sphinx-thebe/pull/41 ) ([ @choldgraf ] ( https://github.com/choldgraf ) )
8+
9+ ` thebe ` will now "lazily load" its javascript only when a bootstrap button is pressed, rather than loading the Javascript on each page.
10+ This saves on bandwidth and pageload speed, since Thebe is generally _ not_ used on a page even if it _ could_ be used.
Original file line number Diff line number Diff line change 99from docutils import nodes
1010from sphinx .util import logging
1111
12- __version__ = "0.0.10 "
12+ __version__ = "0.1.0 "
1313
1414logger = logging .getLogger (__name__ )
1515
You can’t perform that action at this time.
0 commit comments