From ed9b31b1394bc4c57bad08a065477323c458e9c3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Langa?= Date: Thu, 27 Sep 2018 07:49:04 -0700 Subject: [PATCH] Require attrs >= 18.1.0 to work around ctypes failure in Vim Fixes #116, #539 --- Pipfile | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Pipfile b/Pipfile index e35462e..8e9ad1e 100644 --- a/Pipfile +++ b/Pipfile @@ -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" diff --git a/pyproject.toml b/pyproject.toml index 50f32d3..6ac19bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/setup.py b/setup.py index 2b255f8..87583ca 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ setup( 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=[ -- 2.39.2