Skip to content

Update furo requirement from ~=2024.5 to ~=2024.7 #269

Update furo requirement from ~=2024.5 to ~=2024.7

Update furo requirement from ~=2024.5 to ~=2024.7 #269

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