Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
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
Jérome Perrin
setuptools
Commits
ebdb9b5a
Commit
ebdb9b5a
authored
Jun 18, 2013
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Plain Diff
Merge 0.7.3 release
parents
f17e432d
16b2bc31
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
4 deletions
+3
-4
.hgtags
.hgtags
+1
-0
CHANGES.txt
CHANGES.txt
+0
-2
README.txt
README.txt
+1
-1
setup.py
setup.py
+1
-1
No files found.
.hgtags
View file @
ebdb9b5a
...
...
@@ -62,3 +62,4 @@ ddca71ae5ceb9b14512dc60ea83802c10e224cf0 0.6.45
7f2c08e9ca22023d1499c512fccc1513813b7dc4 0.7
024dd30ed702135f5328975042566e48cc479d7d 0.7.1
d04c05f035e3a5636006fc34f4be7e6c77035d17 0.7.2
d212e48e0cef689acba57ed017289c027660b23c 0.7.3
CHANGES.txt
View file @
ebdb9b5a
...
...
@@ -13,8 +13,6 @@ CHANGES
0.7.3
-----
* Rename DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT environment
variable to SETUPTOOLS_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT.
* Issue #1: Disable installation of Windows-specific files on non-Windows systems.
* Use new sysconfig module with Python 2.7 or >=3.2.
...
...
README.txt
View file @
ebdb9b5a
...
...
@@ -12,7 +12,7 @@ Installation Instructions
Upgrading from Distribute
=========================
Currently, Distribute disallows installing Setuptools 0.
8
over Distribute.
Currently, Distribute disallows installing Setuptools 0.
7+
over Distribute.
You must first uninstall any active version of Distribute first (see
`Uninstalling`_).
...
...
setup.py
View file @
ebdb9b5a
...
...
@@ -56,7 +56,7 @@ from setuptools.command.test import test as _test
scripts
=
[]
console_scripts
=
[
"easy_install = setuptools.command.easy_install:main"
]
if
os
.
environ
.
get
(
"
SETUPTOOLS
_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT"
)
is
None
:
if
os
.
environ
.
get
(
"
DISTRIBUTE
_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT"
)
is
None
:
console_scripts
.
append
(
"easy_install-%s = setuptools.command.easy_install:main"
%
sys
.
version
[:
3
])
# specific command that is used to generate windows .exe files
...
...
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