Skip to content

Commit 07a9864

Browse files
authored
Merge pull request #8 from executablebooks/agoose77/maint-fix-deployment
MAINT: fix deployment (use `build`)
2 parents af57bfe + f30f0d3 commit 07a9864

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ jobs:
4444
- name: Set up Python 3.11
4545
uses: actions/setup-python@v4
4646
with:
47-
python-version: 3.11
47+
python-version: "3.11"
4848
- name: Build package
4949
run: |
50-
pip install wheel
51-
python setup.py sdist bdist_wheel
50+
pip install build
51+
python -m build
5252
- name: Publish
5353
uses: pypa/[email protected]
5454
with:

sphinx_remove_toctrees/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from sphinx import addnodes
66

77

8-
__version__ = "1.0.0"
8+
__version__ = "1.0.0.post1"
99

1010
logger = logging.getLogger(__name__)
1111

0 commit comments

Comments
 (0)