Skip to content

Bump version to 0.6.2 and update changelog for AU predictor CUDA fix #131

Bump version to 0.6.2 and update changelog for AU predictor CUDA fix

Bump version to 0.6.2 and update changelog for AU predictor CUDA fix #131

Workflow file for this run

name: lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- name: Install development dependencies
run: |
python -m pip install -r requirements.dev.txt
- name: Lint with flake8
run: |
flake8 --config=.flake8