Skip to content

build(deps): Update scipy requirement from >=1.13.0 to >=1.17.1 #137

build(deps): Update scipy requirement from >=1.13.0 to >=1.17.1

build(deps): Update scipy requirement from >=1.13.0 to >=1.17.1 #137

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths:
- ".github/workflows/**"
- "graphids/**"
- "tests/**"
- "pyproject.toml"
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: pip install ruff
- run: ruff check graphids/ tests/
# test:
# runs-on: ubuntu-latest
# # Disabled: test file list is actively changing during refactor.
# # Re-enable once test suite stabilizes.
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v5
# with:
# python-version: "3.12"
# - name: Install dependencies
# run: |
# pip install torch --index-url https://download.pytorch.org/whl/cpu
# pip install torch-geometric
# pip install -e ".[dev]" --no-deps
# - name: Run tests
# run: pytest tests/ -v -m "not slurm and not slow"