From 1b48c7cf0e404b4b88d272ddf7e1c85904539cdc Mon Sep 17 00:00:00 2001 From: Samuel MARTIN MORO Date: Sat, 23 Jan 2021 17:09:34 +0100 Subject: [PATCH 1/2] fix(python3): can't install py3dns==3.1.0 see https://bugs.launchpad.net/py3dns/+bug/1776027 fixed in 3.2.0 --- requirements/python3.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/python3.txt b/requirements/python3.txt index 38271d4d..4eb4ef62 100644 --- a/requirements/python3.txt +++ b/requirements/python3.txt @@ -1,2 +1,2 @@ dnspython3==1.12.0 -py3dns==3.1.0 +py3dns==3.2.0 From 21baf0b84fbedd887f6d88e13c624f14fb0b5e06 Mon Sep 17 00:00:00 2001 From: Samuel MARTIN MORO Date: Mon, 5 Apr 2021 17:06:41 +0200 Subject: [PATCH 2/2] fix(python): raven uses reserved word with latest python version, raven returns a syntax error during startup: ``` File "/usr/local/lib/python3.9/site-packages/raven/base.py", line 642 if transport.async: ^ SyntaxError: invalid syntax ``` --- requirements/base.txt | 2 +- requirements/rtd.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements/base.txt b/requirements/base.txt index e32a8d49..3210884c 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -1,6 +1,6 @@ dill==0.2.5 future==0.18.2 -raven==5.13.0 +raven==6.10.0 pyzor==1.0.0 Pillow==8.1.0 pygeoip==0.3.2 diff --git a/requirements/rtd.txt b/requirements/rtd.txt index d4e9fd2d..2e41e408 100644 --- a/requirements/rtd.txt +++ b/requirements/rtd.txt @@ -2,7 +2,7 @@ sphinx==3.4.3 sphinx-autobuild==0.6.0 jinja2==2.10.3 future==0.18.2 -raven==5.13.0 +raven==6.10.0 pyzor==1.0.0 Pillow==8.1.0 pygeoip==0.3.2