aboutsummaryrefslogtreecommitdiffstats
path: root/python/Pipfile
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2020-01-09 18:02:33 -0800
committerBryan Newbold <bnewbold@archive.org>2020-01-09 18:02:33 -0800
commit03bfb530e782603e597368f765adee6db7986a1a (patch)
tree6b35794e4f10e6553caa525e2d0aff5ccbd61045 /python/Pipfile
parent5ba7c9556d9c671184818476b9deb2506a47ef42 (diff)
downloadsandcrawler-03bfb530e782603e597368f765adee6db7986a1a.tar.gz
sandcrawler-03bfb530e782603e597368f765adee6db7986a1a.zip
update Pipfile to be xenial-compatible
Diffstat (limited to 'python/Pipfile')
-rw-r--r--python/Pipfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/Pipfile b/python/Pipfile
index e34479a..f7e59c5 100644
--- a/python/Pipfile
+++ b/python/Pipfile
@@ -9,7 +9,6 @@ url = "https://pypi.python.org/simple"
verify_ssl = true
[dev-packages]
-ipython = "*"
pytest = ">=4"
pytest-pythonpath = "*"
pytest-pylint = "*"
@@ -18,6 +17,9 @@ pytest-cov = "*"
pytest-mock = "*"
pylint = "*"
+# newer ipython conflicts with python3.5
+ipython = "<7.0.0"
+
[packages]
requests = ">=2"
raven = {extras = ['flask'],version = "*"}