Bump certifi from 2024.2.2 to 2024.7.4 in /docs #66
This file contains 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: Test | |
on: [push, pull_request] | |
jobs: | |
run_tests: | |
name: Run unit tests | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] | |
tensorflow: ['tensorflow'] | |
# the implementation for scipy.ndimage changed in SciPy 1.6.0, | |
# causing some of the tests to fail | |
scipy: ['scipy'] | |
include: | |
# run an experiment with an old scipy.ndimage: | |
# the implementation for scipy.ndimage changed in SciPy 1.6.0, | |
# so the output will not match in newer versions | |
- python-version: '3.7' | |
tensorflow: tensorflow | |
scipy: 'scipy<=1.5.4' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: Install dependencies with ${{ matrix.scipy }}, ${{ matrix.tensorflow }} and torch | |
run: | | |
python -m pip install --upgrade pip | |
pip install packaging | |
pip install "${{ matrix.scipy }}" | |
pip install "${{ matrix.tensorflow }}" | |
pip install torch | |
- name: Build and install elasticdeform | |
run: pip install -e . | |
- name: Run tests | |
run: python tests/test_deform_grid.py -v |