[meta]: Update motor requirement from <3.0,>=2.5 to >=2.5,<4.0 #1357
This file contains 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
name: isort | |
on: [push, pull_request] | |
jobs: | |
mypy: | |
name: Style Check with Isort | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.8" | |
- run: "python -m pip install isort" | |
name: Install isort | |
- run: "python -m isort --check-only --diff --profile black -l 99 ." | |
name: Style checking with isort | |
# thanks sinbad & jack |