forked from typeddjango/pytest-mypy-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
After python/mypy#11143, the search path for mypy has changed, resulting in the current path being present. Explicitly adding in the base path results in an error about the directory from the search_path (cwd) being present in `MYPYPATH`. Removing the base path from `MYPYPATH` and relying on just `pyinfo` to load the current path in appears to work as expected.
- Loading branch information
1 parent
e3ce0bf
commit c10b039
Showing
3 changed files
with
1 addition
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
dependencies = [ | ||
"pytest>=6.0.0", | ||
"mypy>=0.900", | ||
"mypy>=0.971", | ||
"decorator", | ||
"pyyaml", | ||
"chevron", | ||
|