Require attrs >= 18.1.0 to work around ctypes failure in Vim

Fixes #116, #539
This commit is contained in:
Łukasz Langa 2018-09-27 07:49:04 -07:00
parent 61feadc0f8
commit ed9b31b139
No known key found for this signature in database
GPG Key ID: B26995E310250568
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ name = "pypi"
[packages]
aiohttp = ">=3.3.2"
attrs = ">=17.4.0"
attrs = ">=18.1.0"
click = ">=6.5"
appdirs = "*"
toml = ">=0.9.4"

View File

@ -69,7 +69,7 @@ black = "black:main"
[tool.poetry.dependencies]
python = "^3.6"
attrs = "^17.4"
attrs = "^18.1"
click = "^6.5"
toml = "^0.9.4"
appdirs = "^1.4"

View File

@ -41,7 +41,7 @@ def get_version() -> str:
package_data={"blib2to3": ["*.txt"]},
python_requires=">=3.6",
zip_safe=False,
install_requires=["click>=6.5", "attrs>=17.4.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"]},
test_suite="tests.test_black",
classifiers=[