We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edaf085 commit c02ca47Copy full SHA for c02ca47
CHANGES.md
@@ -20,7 +20,7 @@
20
21
### Packaging
22
23
-<!-- Changes to how Black is packaged, such as dependency requirements -->
+- Fix the version check in the vim file to reject Python 3.8 (#4567)
24
25
### Parser
26
autoload/black.vim
@@ -75,7 +75,7 @@ def _initialize_black_env(upgrade=False):
75
return True
76
77
pyver = sys.version_info[:3]
78
- if pyver < (3, 8):
+ if pyver < (3, 9):
79
print("Sorry, Black requires Python 3.9+ to run.")
80
return False
81
0 commit comments