Remove qiskit_metal package and update dependencies #97
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Deploy Sphinx Documentation | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.11' | |
- name: Cache Python dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Ensure pip is installed | |
run: | | |
python -m ensurepip | |
python -m pip install --upgrade pip | |
sudo apt install graphviz=2.42.2-6 pandoc=2.9.2.1-3ubuntu2 qtbase5-dev=5.15.3+dfsg-2ubuntu0.2 qt5-qmake=5.15.3+dfsg-2ubuntu0.2 | |
- name: Install squadds recs | |
run: | | |
pip install datasets | |
pip install pyEPR-quantum | |
pip install dotnetcore2 | |
pip install -r requirements.txt | |
- name: Install squadds library | |
run: | | |
pip install -e . -vvv | |
- name: Verify qutip and scqubits Installation | |
run: | | |
python -c "import qutip; print(qutip.__version__)" | |
python -c "import scqubits; print(scqubits.__version__)" | |
- name: Test Python Imports | |
run: python imports_test.py | |
- name: Install documentation dependencies | |
run: | | |
pip install sphinx qiskit-sphinx-theme nbsphinx jupyter_sphinx sphinx_copybutton sphinx_design reno pydata_sphinx_theme | |
- name: Install Pandoc v 2.18 | |
run: | | |
sudo apt-get remove -y pandoc | |
wget https://github.com/jgm/pandoc/releases/download/2.18/pandoc-2.18-1-amd64.deb | |
sudo dpkg -i pandoc-2.18-1-amd64.deb | |
- name: List files | |
run: ls -lah | |
- name: Generate documentation | |
run: | | |
cd docs | |
sphinx-apidoc -o source/ ../ | |
- name: Move tutorials to docs/source/tutorials | |
run: | | |
cp tutorials/Tutorial*.ipynb docs/source/tutorials | |
- name: Build documentation | |
run: | | |
cd docs | |
make clean | |
make html | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.SQuADDS}} | |
publish_dir: ./docs/build/html | |