Skip to content

Update tensorflow-datasets requirement from <4.9.0,>=3.1.0 to >=4.9.6,<4.10.0 #1067

Update tensorflow-datasets requirement from <4.9.0,>=3.1.0 to >=4.9.6,<4.10.0

Update tensorflow-datasets requirement from <4.9.0,>=3.1.0 to >=4.9.6,<4.10.0 #1067

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install project dependencies
run: |
pip install tensorflow-cpu==2.10.1
pip install -e .[test]
- name: Run Flake8
run: flake8
- name: Black code style
run: black . --check --target-version py39
- name: Check import order with isort
run: isort . --check --diff
- name: Type check with PyType
run: pytype --jobs auto