build(deps): Update scipy requirement from >=1.13.0 to >=1.17.1 #137
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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" |