buildbot: add patch to disable sqlalchemy version check
This commit is contained in:
parent
b6b427fcef
commit
6df48ab9d6
|
@ -0,0 +1,12 @@
|
|||
--- buildbot/db/enginestrategy.py.orig
|
||||
+++ buildbot/db/enginestrategy.py
|
||||
@@ -174,9 +174,6 @@ class BuildbotEngineStrategy(strategies.
|
||||
|
||||
if version_tup < (0, 6):
|
||||
raise RuntimeError("SQLAlchemy version %s is too old" % (version,))
|
||||
- if version_tup > (0, 7, 10):
|
||||
- raise RuntimeError("SQLAlchemy version %s is not supported by "
|
||||
- "SQLAlchemy-Migrate" % (version,))
|
||||
|
||||
def create(self, name_or_url, **kwargs):
|
||||
if 'basedir' not in kwargs:
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'buildbot'
|
||||
pkgname=buildbot
|
||||
version=0.8.9
|
||||
revision=1
|
||||
revision=2
|
||||
noarch=yes
|
||||
build_style=python-module
|
||||
hostmakedepends="python"
|
||||
|
|
Loading…
Reference in New Issue