Commit 28e2ea9e authored by Florian Schulze's avatar Florian Schulze

Fixed setup.py use of setuptools vs distutils, so .c and .h files are included...

Fixed setup.py use of setuptools vs distutils, so .c and .h files are included in the bdist_egg. Merged from r90444 in the 3.8 branch.
parent 0906ae1b
...@@ -4,6 +4,9 @@ What's new in ZODB 3.8.0 ...@@ -4,6 +4,9 @@ What's new in ZODB 3.8.0
General General
------- -------
- (unreleased) Fixed setup.py use of setuptools vs distutils, so .c and .h
files are included in the bdist_egg.
- The ZODB Storage APIs have been documented and cleaned up. - The ZODB Storage APIs have been documented and cleaned up.
- ZODB versions are now officially deprecated and support for them - ZODB versions are now officially deprecated and support for them
......
...@@ -59,11 +59,11 @@ scripts = [] ...@@ -59,11 +59,11 @@ scripts = []
import glob import glob
import os import os
import sys import sys
from distutils.extension import Extension from setuptools.extension import Extension
from distutils import dir_util from distutils import dir_util
from distutils.dist import Distribution from setuptools.dist import Distribution
from distutils.command.install_lib import install_lib from setuptools.command.install_lib import install_lib
from distutils.command.build_py import build_py from setuptools.command.build_py import build_py
from distutils.util import convert_path from distutils.util import convert_path
if sys.version_info < (2, 4, 2): if sys.version_info < (2, 4, 2):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment