Skip to content

Update hypothesis requirement from <6.88.0,>=6.41.0 to >=6.41.0,<6.89… #24

Update hypothesis requirement from <6.88.0,>=6.41.0 to >=6.41.0,<6.89…

Update hypothesis requirement from <6.88.0,>=6.41.0 to >=6.41.0,<6.89… #24

Workflow file for this run

name: github pages
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Upgrade pip
run: |
# install pip=>20.1 to use "pip cache dir"
python3 -m pip install --upgrade pip
- name: Get pip cache dir
id: pip-cache
run: echo "::set-output name=dir::$(pip cache dir)"
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml', 'mkdocs.yml') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install package
run: python3 -m pip install .[docs]
- name: Run mkdocs
run: mkdocs gh-deploy --force --clean --verbose