Skip to content

Get version without deprecation warnings #39

Get version without deprecation warnings

Get version without deprecation warnings #39

Workflow file for this run

name: Build
on:
- push
- pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macOS-latest
python-version:
- "3.7"
- "3.11"
networkx-version:
- "1.*"
- "2.*"
exclude:
- python-version: "3.11"
networkx-version: "1.*"
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install networkx==${{ matrix.networkx-version }}
python -m pip install --upgrade pip
pip install ".[dev]"
- name: Run pre-commit
if: matrix.python-version == '3.11'
uses: pre-commit/[email protected]
- name: Test with pytest
run: pytest --color=yes