1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
From: Neil Muller <drnlmuller+debian@gmail.com>
Date: Thu, 8 Oct 2015 14:08:56 -0700
Subject: We don't need pkg_resources to run the test suite during the
build, so remove that dependency.
Forwarded: not-needed
Last-Update: 2014-04-13
Patch-Name: remove_pkg_resources
---
sqlobject/conftest.py | 7 -------
1 file changed, 7 deletions(-)
diff --git a/sqlobject/conftest.py b/sqlobject/conftest.py
index 3673168..437ed6d 100644
--- a/sqlobject/conftest.py
+++ b/sqlobject/conftest.py
@@ -1,12 +1,5 @@
"""This module is used by pytest to configure testing"""
-try:
- import pkg_resources
-except ImportError:
- pass
-else:
- pkg_resources.require('SQLObject')
-
# Override some options (doesn't override command line):
verbose = 0
exitfirst = True
|