]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Require attrs >= 18.1.0 to work around ctypes failure in Vim
authorŁukasz Langa <lukasz@langa.pl>
Thu, 27 Sep 2018 14:49:04 +0000 (07:49 -0700)
committerŁukasz Langa <lukasz@langa.pl>
Thu, 27 Sep 2018 14:49:04 +0000 (07:49 -0700)
Fixes #116, #539

Pipfile
pyproject.toml
setup.py

diff --git a/Pipfile b/Pipfile
index e35462ea50254080d2982c989d7197f7a6c21f21..8e9ad1e98b9dab20b61cbb898ff45670ae321da2 100644 (file)
--- 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"
index 50f32d35e0484de9b7045d87462c208a83289d3b..6ac19bc345734f501b9adcb30e854688dc41fc2d 100644 (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"
index 2b255f8276c39720d01fe38240c0210f5e54e066..87583cae03409dc98bf8c8af418adfbf8e0930d4 100644 (file)
--- 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=[