Skip to content

Update pydata-sphinx-theme requirement from <0.8.1,>=0.6.0 to >=0.6.0,<0.14.5 #4231

Update pydata-sphinx-theme requirement from <0.8.1,>=0.6.0 to >=0.6.0,<0.14.5

Update pydata-sphinx-theme requirement from <0.8.1,>=0.6.0 to >=0.6.0,<0.14.5 #4231

Workflow file for this run

name: Linting
on: [push, pull_request]
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install tox
run: pip install tox
- name: Run black through tox
run: tox -e black
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install tox
run: pip install tox
- name: Run isort through tox
run: tox -e isort
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install tox
run: pip install tox
- name: Run pylint through tox
run: tox -e pylint