Skip to content

updated version requirements in setup.py and version #31

updated version requirements in setup.py and version

updated version requirements in setup.py and version #31

Workflow file for this run

name: Build and Deploy Docs
on: [push]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.11" ]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements_docs.txt ]; then pip install -r requirements_docs.txt; fi
- name: Build Sphinx Docs
run: |
cd docs/
make html
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.2.3
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs/build/html # The folder the action should deploy.