diff options
| author | Timothy Crosley <timothy.crosley@gmail.com> | 2020-07-08 22:14:39 -0700 |
|---|---|---|
| committer | Timothy Crosley <timothy.crosley@gmail.com> | 2020-07-08 22:14:39 -0700 |
| commit | 9ee7a97c5a613c7ed536de5635bf26151ba47f55 (patch) | |
| tree | 032445373e8ab2f52114532dce1bf7d3927b5093 /scripts | |
| parent | 340713cbe9ad9245eb9f42108d39e7bd16a1970f (diff) | |
| download | isort-9ee7a97c5a613c7ed536de5635bf26151ba47f55.tar.gz | |
Fixed #1304: isort 5 no longer recognises as a stdlib module.
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/mkstdlibs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mkstdlibs.py b/scripts/mkstdlibs.py index 1d6ff61e..ee08ba1d 100755 --- a/scripts/mkstdlibs.py +++ b/scripts/mkstdlibs.py @@ -31,7 +31,7 @@ for version_info in VERSIONS: invdata = fetch_inventory(FakeApp(), "", url) # Any modules we want to enforce across Python versions stdlib can be included in set init - modules = {"posixpath", "ntpath", "sre_constants"} + modules = {"posixpath", "ntpath", "sre_constants", "sre_parse", "sre_compile", "sre"} for module in invdata["py:module"]: root, *_ = module.split(".") if root not in ["__future__", "__main__"]: |
