Skip to content

Update sphinx requirement from ~=7.2.4 to ~=7.2.5 #253

Update sphinx requirement from ~=7.2.4 to ~=7.2.5

Update sphinx requirement from ~=7.2.4 to ~=7.2.5 #253

Workflow file for this run

name: Build
on:
pull_request:
branches:
- "**"
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions poetry==1.3.2
- name: Test with tox
run: tox