Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(ingest): fix MyPy stubs (#2666)
  • Loading branch information
kevinhu authored and zack3241 committed Jun 8, 2021
commit 38af7ca93432393439c1c2df002f93bf0937205c
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