Skip to content

Commit

Permalink
Merge pull request #8 from executablebooks/agoose77/maint-fix-deployment
Browse files Browse the repository at this point in the history
MAINT: fix deployment (use `build`)
  • Loading branch information
agoose77 authored Mar 22, 2024
2 parents af57bfe + f30f0d3 commit 07a9864
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ jobs:
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
python-version: "3.11"
- name: Build package
run: |
pip install wheel
python setup.py sdist bdist_wheel
pip install build
python -m build
- name: Publish
uses: pypa/gh-action-pypi-publish@v1.8.14
with:
Expand Down
2 changes: 1 addition & 1 deletion sphinx_remove_toctrees/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from sphinx import addnodes


__version__ = "1.0.0"
__version__ = "1.0.0.post1"

logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 07a9864

Please sign in to comment.