15
0
forked from pool/python-kombu

- Update to 4.6.5:

- Revert _lookup api and correct redis implemetnation. 
  - Major overhaul of redis test cases by adding more full featured fakeredis module.
  - Add more test cases to boost coverage of kombu redis transport.
  - Refactor the producer consumer test cases to be based on original mocks and be passing
  - Fix lingering line length issue in test.
  - Sanitise url when include_password is false
  - Pinned pycurl to 7.43.0.2 as it is the latest build with wheels provided
  - Bump py-amqp to 2.5.2 
- Rebase python38.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-kombu?expand=0&rev=147
This commit is contained in:
Tomáš Chvátal
2019-10-08 08:58:11 +00:00
committed by Git OBS Bridge
parent 9f473c5a88
commit c45107de47
5 changed files with 39 additions and 23 deletions

View File

@@ -9,11 +9,11 @@ Subject: [PATCH] Use importlib.metadata from the standard library on Python
requirements/default.txt | 2 +-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/kombu/utils/compat.py b/kombu/utils/compat.py
index c5f0bf118..a741c4350 100644
--- a/kombu/utils/compat.py
+++ b/kombu/utils/compat.py
@@ -7,7 +7,11 @@
Index: kombu-4.6.5/kombu/utils/compat.py
===================================================================
--- kombu-4.6.5.orig/kombu/utils/compat.py
+++ kombu-4.6.5/kombu/utils/compat.py
@@ -7,7 +7,11 @@ import sys
from functools import wraps
from contextlib import contextmanager
@@ -26,11 +26,11 @@ index c5f0bf118..a741c4350 100644
from kombu.five import reraise
diff --git a/requirements/default.txt b/requirements/default.txt
index 00e57cc09..e3ec1c894 100644
--- a/requirements/default.txt
+++ b/requirements/default.txt
Index: kombu-4.6.5/requirements/default.txt
===================================================================
--- kombu-4.6.5.orig/requirements/default.txt
+++ kombu-4.6.5/requirements/default.txt
@@ -1,2 +1,2 @@
amqp>=2.5.1,<3.0
amqp==2.5.1
-importlib-metadata>=0.18
+importlib-metadata>=0.18; python_version<"3.8"