From 078f8170f81115e43ef468ee24e32dbeb6f14a22 Mon Sep 17 00:00:00 2001 From: Andrew Armbruster Date: Sun, 13 Aug 2023 18:38:15 +0200 Subject: [PATCH] chore: split out known dev dependencies Split out dependencies known to be development-only, as well as any unambiguous sub-dependenvies (determined via `pipenv graph`) --- Pipfile | 8 ++--- Pipfile.lock | 87 +++++++++++++++++++++++++++++++++++++++++++++------- 2 files changed, 80 insertions(+), 15 deletions(-) diff --git a/Pipfile b/Pipfile index 308dd09..118ea5e 100644 --- a/Pipfile +++ b/Pipfile @@ -4,21 +4,21 @@ verify_ssl = true name = "pypi" [packages] -black = "*" click = "*" colorama = "*" iniconfig = "*" -mypy-extensions = "*" packaging = "*" pathspec = "*" platformdirs = "*" pluggy = "*" -pytest = "*" -pytest-mock = "*" tomli = "*" typing-extensions = "*" [dev-packages] +black = "*" +pytest = "*" +pytest-mock = "*" +mypy-extensions = "*" [requires] python_version = "3.10" diff --git a/Pipfile.lock b/Pipfile.lock index fe182a6..987bd57 100644 --- a/Pipfile.lock +++ b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "a967b5e967006df1b4d6a21f353dd99f273244de731e83956f3365a1e080340d" + "sha256": "6b1367d5919f0d578a501fd1a53545155842a4145ab195240d90fced34562864" }, "pipfile-spec": 6, "requires": { @@ -16,6 +16,80 @@ ] }, "default": { + "click": { + "hashes": [ + "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd", + "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5" + ], + "index": "pypi", + "version": "==8.1.6" + }, + "colorama": { + "hashes": [ + "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", + "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6" + ], + "index": "pypi", + "version": "==0.4.6" + }, + "iniconfig": { + "hashes": [ + "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", + "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374" + ], + "index": "pypi", + "version": "==2.0.0" + }, + "packaging": { + "hashes": [ + "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61", + "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f" + ], + "index": "pypi", + "version": "==23.1" + }, + "pathspec": { + "hashes": [ + "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20", + "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3" + ], + "index": "pypi", + "version": "==0.11.2" + }, + "platformdirs": { + "hashes": [ + "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d", + "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d" + ], + "index": "pypi", + "version": "==3.10.0" + }, + "pluggy": { + "hashes": [ + "sha256:c2fd55a7d7a3863cba1a013e4e2414658b1d07b6bc57b3919e0c63c9abb99849", + "sha256:d12f0c4b579b15f5e054301bb226ee85eeeba08ffec228092f8defbaa3a4c4b3" + ], + "index": "pypi", + "version": "==1.2.0" + }, + "tomli": { + "hashes": [ + "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc", + "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f" + ], + "index": "pypi", + "version": "==2.0.1" + }, + "typing-extensions": { + "hashes": [ + "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36", + "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2" + ], + "index": "pypi", + "version": "==4.7.1" + } + }, + "develop": { "black": { "hashes": [ "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3", @@ -139,15 +213,6 @@ ], "index": "pypi", "version": "==2.0.1" - }, - "typing-extensions": { - "hashes": [ - "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36", - "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2" - ], - "index": "pypi", - "version": "==4.7.1" } - }, - "develop": {} + } }