summaryrefslogtreecommitdiff
path: root/Pipfile
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2021-02-01 20:47:27 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2021-02-01 20:47:27 -0500
commitf6911706416514adfc7d591587a868cd714c9a25 (patch)
treef56aafe4c2bf6943d40e891ed1d619218ee6e113 /Pipfile
parent918200c02d392c17862fff81bbf58820ed15c725 (diff)
downloadcmd2-git-black_config.tar.gz
Added black to Pipfile and black configuration to pyrpoject.tomlblack_config
Also: - Updated flake8 and isort config in setup.cfg to be consistent with black - Simplified how flake8 is executed by invoke task - Simplified how flake8 is executed by GitHub Actions workflow
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
index bfa222b6..2bf8c8e5 100644
--- a/Pipfile
+++ b/Pipfile
@@ -11,6 +11,7 @@ setuptools = ">=34.4"
wcwidth = ">=0.1.7"
[dev-packages]
+black = "*"
cmd2 = {editable = true,path = "."}
cmd2_ext_test = {editable = true,path = "plugins/ext_test"}
codecov = "*"
@@ -32,3 +33,6 @@ sphinx-autobuild = "*"
sphinx-rtd-theme = "*"
tableformatter="*"
twine = ">=1.11"
+
+[pipenv]
+allow_prereleases = true