aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2020-05-06 14:06:44 -0700
committerBryan Newbold <bnewbold@archive.org>2020-05-06 14:06:44 -0700
commit3e7e3eb8684a91fd7dc97d05f259eec61c525927 (patch)
tree7a377bf7452755b515324a582adfbc256d80ab7a /Pipfile
parentbe274bfb55248b5506ca2a560fa787ae3666da1c (diff)
downloadchocula-3e7e3eb8684a91fd7dc97d05f259eec61c525927.tar.gz
chocula-3e7e3eb8684a91fd7dc97d05f259eec61c525927.zip
pipenv: py37, black, mypy
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile19
1 files changed, 13 insertions, 6 deletions
diff --git a/Pipfile b/Pipfile
index 885177d..830bc3a 100644
--- a/Pipfile
+++ b/Pipfile
@@ -3,18 +3,25 @@ name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
-[dev-packages]
-
[packages]
ftfy = "*"
urlcanon = "*"
surt = "*"
tldextract = "*"
pycountry = "*"
-pytest = "*"
python-stdnum = "*"
-datasette = "*"
+python-dotenv = "*"
+
+# Future?
+#datasette = "*"
+
+[dev-packages]
+pytest = "*"
+mypy = "*"
+
+# must lock black to an exact version because it is still "beta"
+# see: https://github.com/psf/black/issues/517
+black = "==19.10b0"
[requires]
-# Can't require "3.5 or 3.6" here, so just removing. See pipenv github issues.
-#python_version = "3.5"
+python_version = "3.7"