Include Python 3.11 and 3.12 to tests and wheels. #53
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: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] | |
tensorflow: ['tensorflow'] | |
# the implementation for scipy.ndimage changed in SciPy 1.6.0, | |
# causing some of the tests to fail | |
scipy: ['scipy<=1.5.4'] | |
include: | |
# run one test with an older tensorflow version | |
- python-version: '3.6' | |
tensorflow: 'tensorflow==1.15' | |
scipy: 'scipy<=1.5.4' | |
# old scipy is not supported in Python 3.10 | |
- python-version: '3.10' | |
tensorflow: tensorflow | |
scipy: 'scipy' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
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 |