mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-09 07:53:33 +00:00
fix(ingest): fix MyPy stubs (#2666)
This commit is contained in:
parent
2f7b4f9def
commit
c0ace2ce59
@ -98,9 +98,27 @@ all_exclude_plugins: Set[str] = {
|
|||||||
"mssql-odbc",
|
"mssql-odbc",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mypy_stubs = {
|
||||||
|
# for Python 3.6 support
|
||||||
|
"dataclasses",
|
||||||
|
"types-dataclasses",
|
||||||
|
"sqlalchemy-stubs",
|
||||||
|
"types-pkg_resources",
|
||||||
|
"types-six",
|
||||||
|
"types-python-dateutil",
|
||||||
|
"types-requests",
|
||||||
|
"types-toml",
|
||||||
|
"types-PyMySQL",
|
||||||
|
"types-PyYAML",
|
||||||
|
"types-freezegun",
|
||||||
|
# versions 0.1.13 and 0.1.14 seem to have issues
|
||||||
|
"types-click==0.1.12",
|
||||||
|
}
|
||||||
|
|
||||||
base_dev_requirements = {
|
base_dev_requirements = {
|
||||||
*base_requirements,
|
*base_requirements,
|
||||||
*framework_common,
|
*framework_common,
|
||||||
|
*mypy_stubs,
|
||||||
"black>=19.10b0",
|
"black>=19.10b0",
|
||||||
"coverage>=5.1",
|
"coverage>=5.1",
|
||||||
"flake8>=3.8.3",
|
"flake8>=3.8.3",
|
||||||
@ -110,7 +128,6 @@ base_dev_requirements = {
|
|||||||
"pytest-cov>=2.8.1",
|
"pytest-cov>=2.8.1",
|
||||||
"pytest-docker",
|
"pytest-docker",
|
||||||
"tox",
|
"tox",
|
||||||
"sqlalchemy-stubs",
|
|
||||||
"deepdiff",
|
"deepdiff",
|
||||||
"requests-mock",
|
"requests-mock",
|
||||||
"freezegun",
|
"freezegun",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user