Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZODB
Commits
2ebac710
Commit
2ebac710
authored
Aug 27, 2008
by
Florian Schulze
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed setup.py use of setuptools vs distutils, so .c and .h files are included in the bdist_egg.
parent
ddd75765
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
NEWS.txt
NEWS.txt
+3
-0
setup.py
setup.py
+8
-4
No files found.
NEWS.txt
View file @
2ebac710
...
...
@@ -4,6 +4,9 @@ Whats new in ZODB 3.8.1
Bugs Fixed:
- (unreleased) Fixed setup.py use of setuptools vs distutils, so .c and .h
files are included in the bdist_egg.
- (beta 7) Fixed a bug, introduced in an earlier beta, that allowed
clients to connect to out of date servers.
...
...
setup.py
View file @
2ebac710
...
...
@@ -39,7 +39,15 @@ Operating System :: Unix
try
:
from
setuptools
import
setup
from
setuptools.extension
import
Extension
from
setuptools.dist
import
Distribution
from
setuptools.command.install_lib
import
install_lib
from
setuptools.command.build_py
import
build_py
except
ImportError
:
from
distutils.extension
import
Extension
from
distutils.dist
import
Distribution
from
distutils.command.install_lib
import
install_lib
from
distutils.command.build_py
import
build_py
from
distutils.core
import
setup
extra
=
dict
(
scripts
=
[
"src/ZODB/scripts/fsdump.py"
,
...
...
@@ -86,11 +94,7 @@ else:
import
glob
import
os
import
sys
from
distutils.extension
import
Extension
from
distutils
import
dir_util
from
distutils.dist
import
Distribution
from
distutils.command.install_lib
import
install_lib
from
distutils.command.build_py
import
build_py
from
distutils.util
import
convert_path
if
sys
.
version_info
<
(
2
,
4
,
2
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment