|
# This file is part of Buildbot. Buildbot is free software: you can # redistribute it and/or modify it under the terms of the GNU General Public # License as published by the Free Software Foundation, version 2. # # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more # details. # # You should have received a copy of the GNU General Public License along with # this program; if not, write to the Free Software Foundation, Inc., 51 # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # # Copyright Buildbot Team Members
# NOTE: all of these patches test for applicability *before* importing the # patch module. This will help cut down on unnecessary imports where the # patches are not needed, and also avoid problems with patches importing # private things in external libraries that no longer exist.
# this patch doesn't apply (or even import!) on Windows return
# this bug was only present in Twisted-10.2.0 if twisted.version == versions.Version('twisted', 10, 2, 0): from buildbot.monkeypatches import bug4881 bug4881.patch()
# this bug was patched in twisted-11.1.0, and only affects py26 and up (sys.version_info[0] == 2 and sys.version_info[1] >= 6)) if twisted.version < versions.Version('twisted', 11, 1, 0) and py_26: from buildbot.monkeypatches import bug4520 bug4520.patch()
# this bug will hopefully be patched in Twisted-12.0.0; it was probably # present in Twisted-8.x.0, but the patch doesn't work twisted.version >= versions.Version('twisted', 9, 0, 0)):
# fix for SQLAlchemy bug 2364
# fix for SQLAlchemy bug 2189 from buildbot.monkeypatches import sqlalchemy2189 sqlalchemy2189.patch()
|