Added types-six to the linting packages and unlocked all the linter versions. (#286)

Added the from mypy demanded types-six package as a lint dependency.
This should allow for a faster execution.
This commit is contained in:
2023-10-29 20:40:57 +01:00
committed by GitHub
parent f72d606d18
commit 4362463f3c
3 changed files with 25 additions and 12 deletions

View File

@ -105,20 +105,21 @@ sphinxcontrib-mermaid = "^0.9.2"
sphinxcontrib-napoleon = "^0.7"
[tool.poetry.group.lint.dependencies]
SQLAlchemy = {version = "^1.4.46", extras = ["mypy"]}
black = "^23.9.1"
loguru-mypy = "^0.0.4"
mypy = "^1.6.1"
pandas-stubs = "^2.0.3.230814"
pip-audit = "^2.6.1"
pip-licenses = "^4.3.2"
SQLAlchemy = {version = "*", extras = ["mypy"]}
black = "*"
loguru-mypy = "*"
mypy = "*"
pandas-stubs = "*"
pip-audit = "*"
pip-licenses = "*"
ruff = "^0.1.3"
types-cachetools = "^5.3.0.7"
types-cachetools = "*"
types-pyOpenSSL = "*"
types-requests = "^2.31.0.10"
types-requests = "*"
types-setuptools = "*"
types-tabulate = "^0.9.0.3"
types-tqdm = "^4.66.0.3"
types-six = "*"
types-tabulate = "*"
types-tqdm = "*"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.2"