From: Ɓukasz Langa Date: Thu, 7 Jun 2018 00:13:51 +0000 (-0700) Subject: It works better when dependencies are installed. Who knew? X-Git-Url: https://git.madduck.net/etc/vim.git/commitdiff_plain/75eb91443e66ab1c16abedaf4c52ba3920b7bf7a?pf=etc It works better when dependencies are installed. Who knew? --- diff --git a/Pipfile b/Pipfile index 6bda444..274d21d 100644 --- a/Pipfile +++ b/Pipfile @@ -7,6 +7,7 @@ name = "pypi" attrs = ">=17.4.0" click = ">=6.5" appdirs = "*" +toml = ">=0.9.4" [dev-packages] pre-commit = "*" diff --git a/Pipfile.lock b/Pipfile.lock index 1afc044..8ba63ee 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "4bf5b65d243847bc4d7a840a9a1f36e975696dc84fdbd962454712ab8978190b" + "sha256": "ac93441465d67f28d5888486c43ced0b49c4a42c315a8d453064a6441fbf3de0" }, "pipfile-spec": 6, "requires": {}, @@ -37,6 +37,13 @@ ], "index": "pypi", "version": "==6.7" + }, + "toml": { + "hashes": [ + "sha256:8e86bd6ce8cc11b9620cb637466453d94f5d57ad86f17e98a98d1f73e3baab2d" + ], + "index": "pypi", + "version": "==0.9.4" } }, "develop": { @@ -453,15 +460,16 @@ }, "sphinxcontrib-websupport": { "hashes": [ - "sha256:7a85961326aa3a400cd4ad3c816d70ed6f7c740acd7ce5d78cd0a67825072eb9", - "sha256:f4932e95869599b89bf4f80fc3989132d83c9faa5bf633e7b5e0c25dffb75da2" + "sha256:68ca7ff70785cbe1e7bccc71a48b5b6d965d79ca50629606c7861a21b206d9dd", + "sha256:9de47f375baf1ea07cdb3436ff39d7a9c76042c10a769c52353ec46e4e8fc3b9" ], - "version": "==1.0.1" + "version": "==1.1.0" }, "toml": { "hashes": [ "sha256:8e86bd6ce8cc11b9620cb637466453d94f5d57ad86f17e98a98d1f73e3baab2d" ], + "index": "pypi", "version": "==0.9.4" }, "tqdm": { diff --git a/setup.py b/setup.py index efd4ef9..7ec262d 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"], + install_requires=["click>=6.5", "attrs>=17.4.0", "appdirs", "toml>=0.9.4"], test_suite="tests.test_black", classifiers=[ "Development Status :: 4 - Beta",