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
3d3aae58
Commit
3d3aae58
authored
Jul 04, 2013
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bumped to 0.7.9 in preparation for next release.
parent
60eebc12
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
10 deletions
+10
-10
README.txt
README.txt
+4
-4
docs/conf.py
docs/conf.py
+2
-2
ez_setup.py
ez_setup.py
+1
-1
release.py
release.py
+1
-1
setup.py
setup.py
+1
-1
setuptools/__init__.py
setuptools/__init__.py
+1
-1
No files found.
README.txt
View file @
3d3aae58
...
...
@@ -29,7 +29,7 @@ The recommended way to install setuptools on Windows is to download
`ez_setup.py`_ and run it. The script will download the appropriate .egg
file and install it for you.
.. _ez_setup.py: https://bitbucket.org/pypa/setuptools/raw/0.7.
8
/ez_setup.py
.. _ez_setup.py: https://bitbucket.org/pypa/setuptools/raw/0.7.
9
/ez_setup.py
For best results, uninstall previous versions FIRST (see `Uninstalling`_).
...
...
@@ -45,7 +45,7 @@ Unix-based Systems including Mac OS X
Download `ez_setup.py`_ and run it using the target Python version. The script
will download the appropriate version and install it for you::
> wget https://bitbucket.org/pypa/setuptools/raw/0.7.
8
/ez_setup.py -O - | python
> wget https://bitbucket.org/pypa/setuptools/raw/0.7.
9
/ez_setup.py -O - | python
Note that you will may need to invoke the command with superuser privileges to
install to the system Python.
...
...
@@ -53,7 +53,7 @@ install to the system Python.
Alternatively, on Python 2.6 and later, Setuptools may be installed to a
user-local path::
> wget https://bitbucket.org/pypa/setuptools/raw/0.7.
8
/ez_setup.py
> wget https://bitbucket.org/pypa/setuptools/raw/0.7.
9
/ez_setup.py
> python ez_setup.py --user
...
...
@@ -66,7 +66,7 @@ tarball from `Setuptools on PyPI <https://pypi.python.org/pypi/setuptools>`_
and run setup.py with any supported distutils and Setuptools options.
For example::
setuptools-0.7.
8
$ python setup.py --prefix=/opt/setuptools
setuptools-0.7.
9
$ python setup.py --prefix=/opt/setuptools
Use ``--help`` to get a full options list, but we recommend consulting
the `EasyInstall manual`_ for detailed instructions, especially `the section
...
...
docs/conf.py
View file @
3d3aae58
...
...
@@ -48,9 +48,9 @@ copyright = u'2009-2013, The fellowship of the packaging'
# built documents.
#
# The short X.Y version.
version
=
'0.7.
8
'
version
=
'0.7.
9
'
# The full version, including alpha/beta/rc tags.
release
=
'0.7.
8
'
release
=
'0.7.
9
'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
...
...
ez_setup.py
View file @
3d3aae58
...
...
@@ -28,7 +28,7 @@ try:
except
ImportError
:
USER_SITE
=
None
DEFAULT_VERSION
=
"0.7.
8
"
DEFAULT_VERSION
=
"0.7.
9
"
DEFAULT_URL
=
"https://pypi.python.org/packages/source/s/setuptools/"
def
_python_cmd
(
*
args
):
...
...
release.py
View file @
3d3aae58
...
...
@@ -22,7 +22,7 @@ try:
except
Exception
:
pass
VERSION
=
'0.7.
8
'
VERSION
=
'0.7.
9
'
PACKAGE_INDEX
=
'https://pypi.python.org/pypi'
def
set_versions
():
...
...
setup.py
View file @
3d3aae58
...
...
@@ -46,7 +46,7 @@ exec(init_file.read(), d)
init_file
.
close
()
SETUP_COMMANDS
=
d
[
'__all__'
]
VERSION
=
"0.7.
8
"
VERSION
=
"0.7.
9
"
from
setuptools
import
setup
,
find_packages
from
setuptools.command.build_py
import
build_py
as
_build_py
...
...
setuptools/__init__.py
View file @
3d3aae58
...
...
@@ -8,7 +8,7 @@ from distutils.util import convert_path
import
os
import
sys
__version__
=
'0.7.
8
'
__version__
=
'0.7.
9
'
__all__
=
[
'setup'
,
'Distribution'
,
'Feature'
,
'Command'
,
'Extension'
,
'Require'
,
'find_packages'
...
...
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