We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 606d2bd commit 6d84981Copy full SHA for 6d84981
3 files changed
.github/workflows/integration.yml
@@ -35,14 +35,14 @@ jobs:
35
steps:
36
- name: Checkout source
37
uses: actions/checkout@v2
38
- - name: Set up Python 3.8
+ - name: Set up Python 3.7
39
uses: actions/setup-python@v1
40
with:
41
- python-version: "3.8"
+ python-version: 3.7
42
- name: Build package
43
run: |
44
- pip install build
45
- python -m build
+ pip install wheel
+ python setup.py sdist bdist_wheel
46
- name: Publish
47
uses: pypa/gh-action-pypi-publish@v1.1.0
48
CHANGELOG.md
sphinx_thebe/__init__.py
@@ -9,7 +9,7 @@
9
from docutils import nodes
10
from sphinx.util import logging
11
12
-__version__ = "0.1.0"
+__version__ = "0.0.10"
13
14
logger = logging.getLogger(__name__)
15
0 commit comments