add missing aiohttp dep (#699)

add missing aiohttp dep

Also mark 3.8 as allowed to fail for now; it will fail due to an aiohttp bug.

Fixes #690
This commit is contained in:
Jelle Zijlstra 2019-02-14 12:23:56 -08:00 committed by Zsolt Dollenstein
parent a1fd7b26e7
commit a00f426637
2 changed files with 5 additions and 1 deletions

View File

@ -33,6 +33,10 @@ matrix:
python: 3.7 python: 3.7
- name: "3.8-dev" - name: "3.8-dev"
python: 3.8-dev python: 3.8-dev
# aiohttp currently has a bug affecting 3.8
allow_failures:
- name: "3.8-dev"
python: 3.8-dev
before_deploy: before_deploy:
- pip install pyinstaller - pip install pyinstaller
- pyinstaller --clean -F --add-data blib2to3/:blib2to3 black.py - pyinstaller --clean -F --add-data blib2to3/:blib2to3 black.py

View File

@ -42,7 +42,7 @@ def get_version() -> str:
python_requires=">=3.6", python_requires=">=3.6",
zip_safe=False, zip_safe=False,
install_requires=["click>=6.5", "attrs>=18.1.0", "appdirs", "toml>=0.9.4"], install_requires=["click>=6.5", "attrs>=18.1.0", "appdirs", "toml>=0.9.4"],
extras_require={"d": ["aiohttp>=3.3.2"]}, extras_require={"d": ["aiohttp>=3.3.2", "aiohttp-cors"]},
test_suite="tests.test_black", test_suite="tests.test_black",
classifiers=[ classifiers=[
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",