Skip to content

Update wheel requirement from ~=0.40.0 to >=0.40,<0.46 #240

Update wheel requirement from ~=0.40.0 to >=0.40,<0.46

Update wheel requirement from ~=0.40.0 to >=0.40,<0.46 #240

Workflow file for this run

name: Lint
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_test.txt
- name: Lint
run: |
tox -r -e lint