mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Removed code that conditionally installs black
Since we no longer support Python 3.5 we don't need this any more.
This commit is contained in:
parent
c633c035dc
commit
7f89928062
1 changed files with 2 additions and 7 deletions
9
setup.py
9
setup.py
|
|
@ -22,11 +22,6 @@ def get_version():
|
|||
return g["__version__"]
|
||||
|
||||
|
||||
# Only install black on Python 3.6 or higher
|
||||
maybe_black = []
|
||||
if sys.version_info > (3, 6):
|
||||
maybe_black = ["black~=19.10b0"]
|
||||
|
||||
setup(
|
||||
name="datasette",
|
||||
version=versioneer.get_version(),
|
||||
|
|
@ -63,8 +58,8 @@ setup(
|
|||
"aiohttp~=3.6.2",
|
||||
"beautifulsoup4~=4.8.1",
|
||||
"asgiref~=3.2.3",
|
||||
]
|
||||
+ maybe_black,
|
||||
"black~=19.10b0",
|
||||
],
|
||||
},
|
||||
tests_require=["datasette[test]"],
|
||||
classifiers=[
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue