Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Xavier Thompson
slapos.buildout
Commits
337b8968
Commit
337b8968
authored
Dec 30, 2012
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix: distribute 0.6.33 broke Python 2.4 compatibility
parent
780d9286
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
CHANGES.txt
CHANGES.txt
+2
-0
bootstrap/bootstrap.py
bootstrap/bootstrap.py
+2
-0
No files found.
CHANGES.txt
View file @
337b8968
...
@@ -10,6 +10,8 @@ Change History
...
@@ -10,6 +10,8 @@ Change History
- If buildout is bootstrapped with a non-final release, it
- If buildout is bootstrapped with a non-final release, it
won't downgrade itself to a final release.
won't downgrade itself to a final release.
- Fix: distribute 0.6.33 broke Python 2.4 compatibility
- remove `data_files` from `setup.py`, which was installing README.txt
- remove `data_files` from `setup.py`, which was installing README.txt
in current directory during installation
in current directory during installation
[Domen Kožar]
[Domen Kožar]
...
...
bootstrap/bootstrap.py
View file @
337b8968
...
@@ -171,6 +171,8 @@ except ImportError:
...
@@ -171,6 +171,8 @@ except ImportError:
setup_args
[
'download_base'
]
=
options
.
download_base
setup_args
[
'download_base'
]
=
options
.
download_base
if
options
.
use_distribute
:
if
options
.
use_distribute
:
setup_args
[
'no_fake'
]
=
True
setup_args
[
'no_fake'
]
=
True
if
sys
.
version_info
[:
2
]
==
(
2
,
4
):
setup_args
[
'version'
]
=
'0.6.32'
ez
[
'use_setuptools'
](
**
setup_args
)
ez
[
'use_setuptools'
](
**
setup_args
)
if
'pkg_resources'
in
sys
.
modules
:
if
'pkg_resources'
in
sys
.
modules
:
reload
(
sys
.
modules
[
'pkg_resources'
])
reload
(
sys
.
modules
[
'pkg_resources'
])
...
...
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