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
dbe5fff6
Commit
dbe5fff6
authored
Nov 24, 2013
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop support for Python 2.5 and Python 2.4. Fixes #41.
parent
1e811c32
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
15 additions
and
16 deletions
+15
-16
CHANGES.txt
CHANGES.txt
+7
-0
docs/easy_install.txt
docs/easy_install.txt
+1
-1
docs/pkg_resources.txt
docs/pkg_resources.txt
+1
-1
docs/setuptools.txt
docs/setuptools.txt
+3
-3
ez_setup.py
ez_setup.py
+1
-1
pkg_resources.py
pkg_resources.py
+1
-1
setup.py
setup.py
+0
-8
setuptools/version.py
setuptools/version.py
+1
-1
No files found.
CHANGES.txt
View file @
dbe5fff6
...
...
@@ -2,6 +2,13 @@
CHANGES
=======
---
2.0
---
* Issue #41: Dropped support for Python 2.4 and Python 2.5. Clients requiring
setuptools for those versions of Python should use setuptools 1.x.
-----
1.4.1
-----
...
...
docs/easy_install.txt
View file @
dbe5fff6
...
...
@@ -35,7 +35,7 @@ Please see the `setuptools PyPI page <https://pypi.python.org/pypi/setuptools>`_
for download links and basic installation instructions for each of the
supported platforms.
You will need at least Python 2.
4
. An ``easy_install`` script will be
You will need at least Python 2.
6
. An ``easy_install`` script will be
installed in the normal location for Python scripts on your platform.
Note that the instructions on the setuptools PyPI page assume that you are
...
...
docs/pkg_resources.txt
View file @
dbe5fff6
...
...
@@ -975,7 +975,7 @@ parsed_version
py_version
The major/minor Python version the distribution supports, as a string.
For example, "2.
3" or "2
.4". The default is the current version of Python.
For example, "2.
7" or "3
.4". The default is the current version of Python.
platform
A string representing the platform the distribution is intended for, or
...
...
docs/setuptools.txt
View file @
dbe5fff6
...
...
@@ -3,9 +3,9 @@ Building and Distributing Packages with Setuptools
==================================================
``Setuptools`` is a collection of enhancements to the Python ``distutils``
(for Python 2.
3.5 and up on most platforms; 64-bit platforms require a minimum
of Python 2.4) that allow you to more easily build and distribute Python
packages
, especially ones that have dependencies on other packages
.
(for Python 2.
6 and up) that allow developers to more easily build and
distribute Python packages, especially ones that have dependencies on other
packages.
Packages built and distributed using ``setuptools`` look to the user like
ordinary Python packages based on the ``distutils``. Your users don't need to
...
...
ez_setup.py
View file @
dbe5fff6
...
...
@@ -29,7 +29,7 @@ try:
except
ImportError
:
USER_SITE
=
None
DEFAULT_VERSION
=
"
1.4.2
"
DEFAULT_VERSION
=
"
2.0
"
DEFAULT_URL
=
"https://pypi.python.org/packages/source/s/setuptools/"
def
_python_cmd
(
*
args
):
...
...
pkg_resources.py
View file @
dbe5fff6
...
...
@@ -716,7 +716,7 @@ class Environment(object):
`platform` is an optional string specifying the name of the platform
that platform-specific distributions must be compatible with. If
unspecified, it defaults to the current platform. `python` is an
optional string naming the desired version of Python (e.g. ``'
2.4
'``);
optional string naming the desired version of Python (e.g. ``'
3.3
'``);
it defaults to the current version.
You may explicitly set `platform` (and/or `python`) to ``None`` if you
...
...
setup.py
View file @
dbe5fff6
...
...
@@ -169,8 +169,6 @@ setup_params = dict(
License :: OSI Approved :: Python Software Foundation License
License :: OSI Approved :: Zope Public License
Operating System :: OS Independent
Programming Language :: Python :: 2.4
Programming Language :: Python :: 2.5
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
...
...
@@ -184,17 +182,11 @@ setup_params = dict(
"""
).
strip
().
splitlines
(),
extras_require
=
{
"ssl:sys_platform=='win32'"
:
"wincertstore==0.1"
,
"ssl:sys_platform=='win32' and python_version=='2.4'"
:
"ctypes==1.0.2"
,
"ssl:python_version in '2.4, 2.5'"
:
"ssl==1.16"
,
"certs"
:
"certifi==0.0.8"
,
},
dependency_links
=
[
'https://pypi.python.org/packages/source/c/certifi/certifi-0.0.8.tar.gz#md5=dc5f5e7f0b5fc08d27654b17daa6ecec'
,
'https://pypi.python.org/packages/source/s/ssl/ssl-1.16.tar.gz#md5=fb12d335d56f3c8c7c1fefc1c06c4bfb'
,
'https://pypi.python.org/packages/source/w/wincertstore/wincertstore-0.1.zip#md5=2f9accbebe8f7b4c06ac7aa83879b81c'
,
'https://bitbucket.org/pypa/setuptools/downloads/ctypes-1.0.2.win32-py2.4.exe#md5=9092a0ad5a3d79fa2d980f1ddc5e9dbc'
,
'https://bitbucket.org/pypa/setuptools/downloads/ssl-1.16-py2.4-win32.egg#md5=3cfa2c526dc66e318e8520b6f1aadce5'
,
'https://bitbucket.org/pypa/setuptools/downloads/ssl-1.16-py2.5-win32.egg#md5=85ad1cda806d639743121c0bbcb5f39b'
,
],
scripts
=
[],
# tests_require = "setuptools[ssl]",
...
...
setuptools/version.py
View file @
dbe5fff6
__version__
=
'
1.4.2
'
__version__
=
'
2.0
'
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