We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents af57bfe + f30f0d3 commit 07a9864Copy full SHA for 07a9864
2 files changed
.github/workflows/tests.yml
@@ -44,11 +44,11 @@ jobs:
44
- name: Set up Python 3.11
45
uses: actions/setup-python@v4
46
with:
47
- python-version: 3.11
+ python-version: "3.11"
48
- name: Build package
49
run: |
50
- pip install wheel
51
- python setup.py sdist bdist_wheel
+ pip install build
+ python -m build
52
- name: Publish
53
uses: pypa/gh-action-pypi-publish@v1.8.14
54
sphinx_remove_toctrees/__init__.py
@@ -5,7 +5,7 @@
5
from sphinx import addnodes
6
7
8
-__version__ = "1.0.0"
+__version__ = "1.0.0.post1"
9
10
logger = logging.getLogger(__name__)
11
0 commit comments