Skip to content

Commit

Permalink
Freeze mypy to 0.942
Browse files Browse the repository at this point in the history
We're facing an issue where mypy is compalining that we're missing
an await on `asyncio.sleep(polling_interval)` in
astronomer/providers/apache/hive/hooks/hive.py:46
This is potentially because of the new release of mypy==0.950
including PR python/mypy#12279
We don't face this issue with mypy==0.942 and hence, freezing it.
  • Loading branch information
pankajkoti committed Apr 29, 2022
1 parent fa731a9 commit 0ac6923
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ tests =
pytest-cov
pre-commit
mypy =
mypy>=0.800
mypy==0.942
types-aiofiles
types-boto
types-certifi
Expand Down

0 comments on commit 0ac6923

Please sign in to comment.