X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/61feadc0f8db5b3676bd381d86def38da8b094b2..34aeee68799d33d5ab85901d3d778e4b7b6d78c9:/pyproject.toml?ds=sidebyside

diff --git a/pyproject.toml b/pyproject.toml
index 50f32d3..17476bb 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -7,11 +7,12 @@
 
 [tool.black]
 line-length = 88
-py36 = true
+target-version = ['py36', 'py37', 'py38']
 include = '\.pyi?$'
 exclude = '''
 /(
-    \.git
+    \.eggs
+  | \.git
   | \.hg
   | \.mypy_cache
   | \.tox
@@ -34,7 +35,7 @@ exclude = '''
 
 [tool.poetry]
 name = "black"
-version = "18.9b0"
+version = "19.3b0"
 description = "The uncompromising code formatter."
 readme = "README.md"
 authors = [
@@ -45,7 +46,7 @@ authors = [
     "Mika Naylor <mail@autophagy.io>",
     "Zsolt Dollenstein <zsol.zsol@gmail.com>",
 ]
-homepage = "https://github.com/ambv/black/"
+homepage = "https://github.com/psf/black/"
 documentation = "https://black.readthedocs.io/en/stable/"
 license = "MIT"
 keywords = ["automation", "formatter", "yapf", "autopep8", "gofmt"]
@@ -69,11 +70,12 @@ 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"
 aiohttp = { version = "^3.4", optional = true }
+regex = "^2019.8"
 
 [tool.poetry.extras]
 d = ["aiohttp"]