From 99ed82dedbfb5b57e294e479aea0810d4bcbc0f9 Mon Sep 17 00:00:00 2001 From: Xevion Date: Thu, 11 May 2023 23:49:41 -0500 Subject: [PATCH] Add black dev package, synchronize setup.py --- Pipfile | 1 + Pipfile.lock | 4 ++-- setup.py | 18 ++++++++---------- 3 files changed, 11 insertions(+), 12 deletions(-) diff --git a/Pipfile b/Pipfile index 103e4a3..9f4876d 100644 --- a/Pipfile +++ b/Pipfile @@ -20,6 +20,7 @@ setuptools = "*" [dev-packages] vistir = "==0.6.1" pipenv-setup = {extras = ["black"], version = "*"} +black = "*" [requires] python_version = "3.11" diff --git a/Pipfile.lock b/Pipfile.lock index b914c6e..ae7ee34 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "b1d776aa6f4fa799a8193bcb4a7258a93859c8ff24eb71f8b7fb0d8a5da84df5" + "sha256": "e489f1d322f8c3fae1ef168460a4b8e7d433af359a03d9cff2bc7eec46e09d39" }, "pipfile-spec": 6, "requires": { @@ -626,7 +626,7 @@ "sha256:c116eed0efb9ff870ded8b62fe9f28dd61ef6e9ddd28d83d7d264a38417dcee2", "sha256:d30b212bffeb1e252b31dd269dfae69dd17e06d92b87ad26e23890f3efea366f" ], - "markers": "python_version >= '3.6'", + "index": "pypi", "version": "==22.12.0" }, "cached-property": { diff --git a/setup.py b/setup.py index c6e5e7f..8177288 100644 --- a/setup.py +++ b/setup.py @@ -45,8 +45,8 @@ setup( "cachetools==5.3.0; python_version ~= '3.7'", "certifi==2023.5.7; python_version >= '3.6'", "charset-normalizer==3.1.0; python_full_version >= '3.7.0'", - "click==7.1.2", - "colorama==0.4.6; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'", + "click==8.1.3", + "colorama==0.4.6; platform_system == 'Windows'", "colored-traceback==0.3.0", "commonmark==0.9.1", "google-api-core==2.11.0; python_version >= '3.7'", @@ -84,41 +84,39 @@ setup( ], extras_require={ "dev": [ - "appdirs==1.4.4", "attrs==23.1.0; python_version >= '3.7'", - "black==19.10b0; python_version >= '3.6'", + "black==22.12.0; python_version >= '3.6'", "cached-property==1.5.2", "cerberus==1.3.4", "certifi==2023.5.7; python_version >= '3.6'", "chardet==5.0.0; python_version >= '3.6'", "charset-normalizer==3.1.0; python_full_version >= '3.7.0'", - "click==7.1.2", - "colorama==0.4.6; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'", + "click==8.1.3", + "colorama==0.4.6; platform_system == 'Windows'", "distlib==0.3.6", "idna==3.4; python_version >= '3.5'", + "mypy-extensions==1.0.0; python_version >= '3.5'", "orderedmultidict==1.0.1", "packaging==20.9; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "pathspec==0.11.1; python_version >= '3.7'", "pep517==0.13.0; python_version >= '3.6'", "pip==23.1.2; python_version >= '3.7'", "pip-shims==0.7.3; python_version >= '3.6'", - "pipenv-setup[black]==3.1.4", + "pipenv-setup[black]==3.2.0", "pipfile==0.0.2", "platformdirs==3.5.1; python_version >= '3.7'", "plette[validation]==0.4.4; python_version >= '3.7'", "pyparsing==3.0.9; python_version >= '3.1'", "python-dateutil==2.8.2; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", - "regex==2023.5.5; python_version >= '3.6'", "requests==2.30.0; python_version >= '3.7'", "requirementslib==1.6.9; python_version >= '3.7'", "setuptools==67.7.2", "six==1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "toml==0.10.2; python_version >= '2.6' and python_version not in '3.0, 3.1, 3.2, 3.3'", "tomlkit==0.11.8; python_version >= '3.7'", - "typed-ast==1.5.4; python_version >= '3.6'", "urllib3==1.26.15; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5'", "vistir==0.6.1", "wheel==0.40.0; python_version >= '3.7'", ] - } + }, )