Add pyproject.toml to Improve CI/CD and Tooling #803
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# print more columns | |
env: | |
COLUMNS: 120 | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false # don't cancel all jobs when one fails | |
matrix: | |
python_version: ['3.9', '3.10', '3.11', '3.12'] | |
torch_version: ['2.4.1+cpu', '2.5.1+cpu', '2.6.0+cpu', '2.7.0+cpu'] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python_version }} | |
- name: Install dependencies | |
# TODO remove triton 3.1 install if torch < 2.6 no longer supported, see #1093 | |
# TODO remove triton 3.2 install if torch < 2.7 no longer supported | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install .[test,docs,dev,full] | |
python -m pip install pytest-pretty | |
python -m pip install torch==${{ matrix.torch_version }} -f https://download.pytorch.org/whl/torch | |
TORCH_VERSION_MAJOR_MINOR=$(python -c "import torch; v=torch.__version__.split('+')[0]; print('.'.join(v.split('.')[:2]))") | |
if [[ $(echo "$TORCH_VERSION_MAJOR_MINOR < 2.6" | bc -l) -eq 1 ]]; then | |
python -m pip install "triton==3.1" | |
elif [[ $(echo "$TORCH_VERSION_MAJOR_MINOR < 2.7" | bc -l) -eq 1 ]]; then | |
python -m pip install "triton==3.2" | |
fi | |
python -m pip list | |
- name: Install skorch | |
run: | | |
python -m pip install . | |
- name: Test with pytest | |
run: | | |
pytest |