From: Ɓukasz Langa Date: Thu, 27 Sep 2018 14:49:04 +0000 (-0700) Subject: Require attrs >= 18.1.0 to work around ctypes failure in Vim X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/ed9b31b1394bc4c57bad08a065477323c458e9c3?ds=inline;pf=etc Require attrs >= 18.1.0 to work around ctypes failure in Vim Fixes #116, #539 --- 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=[