Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

### Packaging

<!-- Changes to how Black is packaged, such as dependency requirements -->
- Fix the version check in the vim file to reject Python 3.8 (#4567)

### Parser

Expand Down
2 changes: 1 addition & 1 deletion autoload/black.vim
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def _initialize_black_env(upgrade=False):
return True

pyver = sys.version_info[:3]
if pyver < (3, 8):
if pyver < (3, 9):
print("Sorry, Black requires Python 3.9+ to run.")
return False

Expand Down