Skip to content

MAINT: Drop support for python 3.10, and update min supported networkx version to 3.4.1 #364

MAINT: Drop support for python 3.10, and update min supported networkx version to 3.4.1

MAINT: Drop support for python 3.10, and update min supported networkx version to 3.4.1 #364

Workflow file for this run

name: style
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
format:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
pip install --upgrade pip
pip install -e ."[developer]"
- name: Lint
run: pre-commit run --all-files --show-diff-on-failure --color always