Skip to content
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
2 changes: 2 additions & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
QISKIT_PARALLEL: False
QISKIT_DOCS_BUILD_TUTORIALS: 'always'
run: |
echo "earliest_version: 0.1.0" >> releasenotes/config.yaml
make html SPHINXOPTS=-W
tools/deploy_documentation.sh
shell: bash
Expand Down Expand Up @@ -75,5 +76,6 @@ jobs:
QISKIT_PARALLEL: False
QISKIT_DOCS_BUILD_TUTORIALS: 'always'
run: |
echo "earliest_version: 0.1.0" >> releasenotes/config.yaml
tools/deploy_translatable_strings.sh
shell: bash
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ jobs:
sudo apt-get -y install python3-enchant
sudo apt-get -y install hunspell-en-us
pip install pyenchant
# append to reno config
echo "earliest_version: 0.1.0" >> releasenotes/config.yaml
shell: bash
- name: PIP Check
run: |
Expand Down Expand Up @@ -225,6 +227,7 @@ jobs:
conda activate
pip install jupyter sphinx_rtd_theme 'matplotlib<3.3.0' qiskit-terra[visualization]
sudo apt-get install -y pandoc graphviz
echo "earliest_version: 0.1.0" >> releasenotes/config.yaml
shell: bash
- name: Run Qiskit Nature Tutorials
env:
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,16 +61,16 @@ test_ci:

spell:
python -m pylint -rn --disable=all --enable=spelling --spelling-dict=en_US --spelling-private-dict-file=.pylintdict --ignore=gauopen qiskit_nature test tools
make -C docs spell SPHINXOPTS=$(SPHINXOPTS)
sphinx-build -M spelling docs docs/_build -W $(SPHINXOPTS)

copyright:
python tools/check_copyright.py

html:
make -C docs html SPHINXOPTS=$(SPHINXOPTS)
sphinx-build -M html docs docs/_build $(SPHINXOPTS)

doctest:
make -C docs doctest SPHINXOPTS=$(SPHINXOPTS)
sphinx-build -M doctest docs docs/_build $(SPHINXOPTS)

clean_sphinx:
make -C docs clean
Expand Down