Update dependency scipy to <1.17 - autoclosed #285
Workflow file for this run
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
| on: | |
| push: | |
| branches: | |
| - "master" | |
| pull_request: | |
| branches: | |
| - "master" | |
| jobs: | |
| test: | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| # Basic setup | |
| - uses: "actions/checkout@v4" | |
| - run: "pipx install poetry" | |
| - uses: "actions/setup-python@v5" | |
| with: | |
| python-version: "3.13" | |
| cache: "pip" | |
| # Install the dependencies | |
| - run: "pip install ." | |
| # Run all the tests | |
| - run: "python -m dl4to4ocp.resize" | |
| - run: "python -m dl4to4ocp.voxels" | |
| - run: "python -m example.example" |