mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Tweak version check
Because 3.5.1 > 3.5
This commit is contained in:
parent
d88d015581
commit
fcec3badd8
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
|
@ -24,7 +24,7 @@ def get_version():
|
|||
|
||||
# Only install black on Python 3.6 or higher
|
||||
maybe_black = []
|
||||
if sys.version_info > (3, 5):
|
||||
if sys.version_info > (3, 6):
|
||||
maybe_black = ["black"]
|
||||
|
||||
setup(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue