Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Build docs without parallelization to fix pop-up issues with sphinx-tippy #80

Merged
merged 5 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/package-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
run: |
python scripts/check_unreleased_changelog_items.py
git add python_semantic_release_templates
git config --global tag.gpgSign true
- name: Python Semantic Release
uses: python-semantic-release/[email protected] # 8.3.0 has a bug in the version output variable
id: release
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ ______________________________________________________________________

Things to be included in the next release go here.

### Fixed

- Fixed the `tippy.js` pop-ups in the documentation

______________________________________________________________________

## v0.1.23 (2023-10-30)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ deps =
commands_pre =
commands =
python -c "import shutil; shutil.rmtree('.results_{envname}', ignore_errors=True)"
sphinx-build -b html -a -W --keep-going -j 3 docs .results_{envname}/html
sphinx-build -b html -a -W --keep-going docs .results_{envname}/html

[testenv:doctests]
basepython = {env:DOC_PYTHON_VERSION}
Expand Down