From e0d67b0f8421e05f54effb5a5f5a0d6e54bb0903 Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Wed, 15 Oct 2014 17:44:33 +0200 Subject: [PATCH] actually remove nose build patch --- python-sqlalchemy-0.9.7-nose-use-build.patch | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 python-sqlalchemy-0.9.7-nose-use-build.patch diff --git a/python-sqlalchemy-0.9.7-nose-use-build.patch b/python-sqlalchemy-0.9.7-nose-use-build.patch deleted file mode 100644 index a6ad14f..0000000 --- a/python-sqlalchemy-0.9.7-nose-use-build.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff -up SQLAlchemy-0.9.7/sqla_nose.py.nose-use-build SQLAlchemy-0.9.7/sqla_nose.py ---- SQLAlchemy-0.9.7/sqla_nose.py.nose-use-build 2014-07-29 13:07:44.151453336 +0200 -+++ SQLAlchemy-0.9.7/sqla_nose.py 2014-07-29 13:09:15.096785664 +0200 -@@ -11,13 +11,14 @@ import nose - import warnings - - -+import glob - from os import path --for pth in ['./lib']: -+for pth in glob.glob('build/lib*'): - sys.path.insert(0, path.join(path.dirname(path.abspath(__file__)), pth)) - - # installing without importing SQLAlchemy, so that coverage includes - # SQLAlchemy itself. --path = "lib/sqlalchemy/testing/plugin/noseplugin.py" -+path = glob.glob("build/lib*/sqlalchemy/testing/plugin/noseplugin.py")[0] - if sys.version_info >= (3, 3): - from importlib import machinery - noseplugin = machinery.SourceFileLoader("noseplugin", path).load_module()