diff options
Diffstat (limited to 'python/Pipfile')
-rw-r--r-- | python/Pipfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/python/Pipfile b/python/Pipfile index 1a19a145..a2ce14e1 100644 --- a/python/Pipfile +++ b/python/Pipfile @@ -30,6 +30,8 @@ Flask-Misaka = "*" flask-mwoauth = "*" WTForms = "*" loginpass = ">=0.4" +# loginpass 0.4 is not actually compatible with newer authlib +authlib = "<0.13" requests = ">=2" raven = {extras = ['flask'],version = "*"} pykafka = ">=2" @@ -51,6 +53,11 @@ dateparser = ">=0.7" langdetect = "*" pathlib2 = "*" pycountry = "*" +tldextract = "*" + +# this is only to lock to a python3.5-compatible version. needed by an +# importlib-metadata, under pytest +zipp = "<2.0.0" [requires] # Python 3.5 is the bundled (system) version of python for Ubuntu 16.04 |