SHA256
1
0
forked from pool/pagure
pagure/0001-Allow-using-Pagure-with-python-redis-3.0.0.patch
Neal Gompa c36f891d8a - Update to 5.2
+ Add support for the MQTT protocol
  + Add support for mirroring in git repositories from outside sources
  + Add support to merge a PR when the fork was deleted
  + Add the ability to generate archive from a commit or tag
  + Allow searching the content of the comments on an issue tracker
  + Allow filtering the issue list by the close status
  + Show related PRs on the issue list if there are any
  + Add build status to pull requests page
  + Add new API endpoints for get and set project options
  + Add WIP/experimental/unstable support for third-party extensions to pagure
  + Add support for rebasing pull-requests
  + Implement a button to rerun CI tests on a pull request
  + Support disallowing remote pull requests
  + Add an about page in the themes
  + Update the chameleon theme
- Backport fix from master to allow using python-redis >= 3.0.0
  + Patch: 0001-Allow-using-Pagure-with-python-redis-3.0.0.patch
- Backport fix from master to fix compatibility with Markdown 3.0+
  + Patch: 0002-Fix-Markdown-usage-to-work-with-Markdown-3.0.patch
- Drop patches that are part of this release
  + 0001-Port-pagure-to-markdown-3.0-while-remaining-backward.patch
  + 0002-Bypass-old-hooks-rather-than-using-non-existing-syml.patch

OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/pagure?expand=0&rev=12
2019-01-10 13:14:31 +00:00

33 lines
909 B
Diff

From 2b1a46a3b97af49938d4d4f0d08354e5950aaf86 Mon Sep 17 00:00:00 2001
From: Neal Gompa <ngompa13@gmail.com>
Date: Wed, 9 Jan 2019 09:37:04 -0500
Subject: [PATCH 1/2] Allow using Pagure with python-redis >= 3.0.0
There doesn't seem to be any issues when running the test suite locally
with python-redis >= 3.0.0, so let's allow it again.
Fixes: https://pagure.io/pagure/issue/4183
Signed-off-by: Neal Gompa <ngompa13@gmail.com>
---
requirements.txt | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/requirements.txt b/requirements.txt
index 15475f68..996fb063 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -23,8 +23,7 @@ python-openid;python_version<="2.7"
python3-openid;python_version>="3.0"
python-openid-cla
python-openid-teams
-# The 3.0.0 release of redis fails to run the tests in jenkins for us :(
-redis<3.0.0
+redis
requests
six
sqlalchemy >= 0.8
--
2.20.1