Skip to content

Commit

Permalink
fix(ingest): fix MyPy stubs (#2666)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinhu authored and zack3241 committed Jun 8, 2021
1 parent c0db89c commit 38af7ca
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion metadata-ingestion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,27 @@ def get_long_description():
"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_requirements,
*framework_common,
*mypy_stubs,
"black>=19.10b0",
"coverage>=5.1",
"flake8>=3.8.3",
Expand All @@ -110,7 +128,6 @@ def get_long_description():
"pytest-cov>=2.8.1",
"pytest-docker",
"tox",
"sqlalchemy-stubs",
"deepdiff",
"requests-mock",
"freezegun",
Expand Down

0 comments on commit 38af7ca

Please sign in to comment.