Skip to content

Bump pillow from 8.1.2 to 10.0.1 #126

Bump pillow from 8.1.2 to 10.0.1

Bump pillow from 8.1.2 to 10.0.1 #126

Workflow file for this run

name: Deploy docs
on: push
# use tags to build docs only on tagged commits.
# tags: ['[0-9]+.[0-9]+.*']
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 3
- name: Fetch tags
run: git fetch --prune --unshallow --tags
- uses: actions/cache@v2
with:
path: ${{ env.pythonLocation }}
key: ubuntu-latest-cache-v2-${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ hashFiles('requirements.txt') }}
- name: Install dependencies
run: |
pip install -U pip setuptools wheel
pip install -e '.[dev]'
- name: Build docs
run: time ./doc/build.sh
- name: Deploy docs
env:
GH_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
run: .github/deploy-gh-pages.sh