Skip to content

Commit

Permalink
Exclude broken pandas-stubs version for Python 3.8 mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo committed Oct 31, 2023
1 parent 88c02a3 commit e71310a
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[tox]
envlist = lint

[testenv:lint]
[testenv]
commands =
ruff .
black --check --diff .
isort --check --diff .
mypy .
lint: ruff .
lint: black --check --diff .
lint: isort --check --diff .
lint: mypy .
deps =
black
isort
mypy
pandas-stubs
ruff
types-PyYAML
types-requests
lint: black
lint: isort
lint: mypy
lint: pandas-stubs != 2.0.3.230814
lint: ruff
lint: types-PyYAML
lint: types-requests
skip_install = true

0 comments on commit e71310a

Please sign in to comment.