32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
|
From 46c50849584d254b81ad058e1a53adcef1eb4c53 Mon Sep 17 00:00:00 2001
|
||
|
From: Asaf Kahlon <asafka7@gmail.com>
|
||
|
Date: Fri, 12 Oct 2018 07:57:23 +0300
|
||
|
Subject: [PATCH 1/1] setup.py: avoid installing tests to site-packages
|
||
|
|
||
|
This patch update only setup.py from upstream patch
|
||
|
(389f6c08d9536060184bfd5c8ea2491a4a91c2fb).
|
||
|
|
||
|
Signed-off-by: Asaf Kahlon <asafka7@gmail.com>
|
||
|
---
|
||
|
setup.py | 4 ++--
|
||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/setup.py b/setup.py
|
||
|
index b521290..3f309fc 100644
|
||
|
--- a/setup.py
|
||
|
+++ b/setup.py
|
||
|
@@ -674,8 +674,8 @@ setup(name="psycopg2",
|
||
|
long_description="\n".join(readme.split("\n")[2:]).lstrip(),
|
||
|
classifiers=[x for x in classifiers.split("\n") if x],
|
||
|
data_files=data_files,
|
||
|
- package_dir={'psycopg2': 'lib', 'psycopg2.tests': 'tests'},
|
||
|
- packages=['psycopg2', 'psycopg2.tests'],
|
||
|
+ package_dir={'psycopg2': 'lib'},
|
||
|
+ packages=['psycopg2'],
|
||
|
cmdclass={
|
||
|
'build_ext': psycopg_build_ext,
|
||
|
'build_py': build_py, },
|
||
|
--
|
||
|
2.17.1
|
||
|
|