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
3b90be7b
Commit
3b90be7b
authored
Mar 29, 2016
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update most bitbucket references to point to Github now. Fixes #422.
parent
0f147d3f
Changes
11
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
74 additions
and
62 deletions
+74
-62
CHANGES.txt
CHANGES.txt
+46
-33
README.txt
README.txt
+2
-2
docs/conf.py
docs/conf.py
+3
-3
docs/developer-guide.txt
docs/developer-guide.txt
+14
-15
docs/setuptools.txt
docs/setuptools.txt
+1
-1
pkg_resources/tests/test_resources.py
pkg_resources/tests/test_resources.py
+1
-1
release.py
release.py
+1
-1
setup.py
setup.py
+1
-1
setuptools/command/easy_install.py
setuptools/command/easy_install.py
+2
-2
setuptools/command/install.py
setuptools/command/install.py
+1
-1
setuptools/dist.py
setuptools/dist.py
+2
-2
No files found.
CHANGES.txt
View file @
3b90be7b
This diff is collapsed.
Click to expand it.
README.txt
View file @
3b90be7b
...
@@ -18,7 +18,7 @@ basic routine, so below are some examples to get you started.
...
@@ -18,7 +18,7 @@ basic routine, so below are some examples to get you started.
Setuptools requires Python 2.6 or later. To install setuptools
Setuptools requires Python 2.6 or later. To install setuptools
on Python 2.4 or Python 2.5, use the `bootstrap script for Setuptools 1.x
on Python 2.4 or Python 2.5, use the `bootstrap script for Setuptools 1.x
<https://
bitbucket.org/pypa/setuptools/raw
/bootstrap-py24/ez_setup.py>`_.
<https://
raw.githubusercontent.com/pypa/setuptools
/bootstrap-py24/ez_setup.py>`_.
The link provided to ez_setup.py is a bookmark to bootstrap script for the
The link provided to ez_setup.py is a bookmark to bootstrap script for the
latest known stable release.
latest known stable release.
...
@@ -176,7 +176,7 @@ them there, so this reference list can be updated. If you have working,
...
@@ -176,7 +176,7 @@ them there, so this reference list can be updated. If you have working,
*tested* patches to correct problems or add features, you may submit them to
*tested* patches to correct problems or add features, you may submit them to
the `setuptools bug tracker`_.
the `setuptools bug tracker`_.
.. _setuptools bug tracker: https://
bitbucket.org
/pypa/setuptools/issues
.. _setuptools bug tracker: https://
github.com
/pypa/setuptools/issues
.. _The Internal Structure of Python Eggs: https://pythonhosted.org/setuptools/formats.html
.. _The Internal Structure of Python Eggs: https://pythonhosted.org/setuptools/formats.html
.. _The setuptools Developer's Guide: https://pythonhosted.org/setuptools/setuptools.html
.. _The setuptools Developer's Guide: https://pythonhosted.org/setuptools/setuptools.html
.. _The pkg_resources API reference: https://pythonhosted.org/setuptools/pkg_resources.html
.. _The pkg_resources API reference: https://pythonhosted.org/setuptools/pkg_resources.html
...
...
docs/conf.py
View file @
3b90be7b
...
@@ -208,11 +208,11 @@ link_files = {
...
@@ -208,11 +208,11 @@ link_files = {
replace
=
[
replace
=
[
dict
(
dict
(
pattern
=
r"(Issue )?#(?P<issue>\
d+)
",
pattern
=
r"(Issue )?#(?P<issue>\
d+)
",
url='{
BB}/pypa/setuptools/issue
/{issue}',
url='{
GH}/pypa/setuptools/issues
/{issue}',
),
),
dict(
dict(
pattern=r"
Pull
Request
?
#(?P<
pull_request>\d+)",
pattern=r"
BB
Pull
Request
?
#(?P<bb_
pull_request>\d+)",
url
=
'{BB}/pypa/setuptools/pull-request/{pull_request}'
,
url
=
'{BB}/pypa/setuptools/pull-request/{
bb_
pull_request}'
,
),
),
dict
(
dict
(
pattern
=
r"Distribute #(?P<distribute>\
d+)
",
pattern
=
r"Distribute #(?P<distribute>\
d+)
",
...
...
docs/developer-guide.txt
View file @
3b90be7b
...
@@ -23,10 +23,10 @@ quality of contribution.
...
@@ -23,10 +23,10 @@ quality of contribution.
Project Management
Project Management
------------------
------------------
Setuptools is maintained primarily in
Bitbucket
at `this home
Setuptools is maintained primarily in
Github
at `this home
<https://
bitbucket.org
/pypa/setuptools>`_. Setuptools is maintained under the
<https://
github.com
/pypa/setuptools>`_. Setuptools is maintained under the
Python Packaging Authority (PyPA) with several core contributors. All bugs
Python Packaging Authority (PyPA) with several core contributors. All bugs
for Setuptools are filed and the canonical source is maintained in
Bitbucket
.
for Setuptools are filed and the canonical source is maintained in
Github
.
User support and discussions are done through the issue tracker (for specific)
User support and discussions are done through the issue tracker (for specific)
issues, through the distutils-sig mailing list, or on IRC (Freenode) at
issues, through the distutils-sig mailing list, or on IRC (Freenode) at
...
@@ -44,7 +44,7 @@ describing the motivation behind making changes. First search to see if a
...
@@ -44,7 +44,7 @@ describing the motivation behind making changes. First search to see if a
ticket already exists for your issue. If not, create one. Try to think from
ticket already exists for your issue. If not, create one. Try to think from
the perspective of the reader. Explain what behavior you expected, what you
the perspective of the reader. Explain what behavior you expected, what you
got instead, and what factors might have contributed to the unexpected
got instead, and what factors might have contributed to the unexpected
behavior. In
Bitbucket
, surround a block of code or traceback with the triple
behavior. In
Github
, surround a block of code or traceback with the triple
backtick "\`\`\`" so that it is formatted nicely.
backtick "\`\`\`" so that it is formatted nicely.
Filing a ticket provides a forum for justification, discussion, and
Filing a ticket provides a forum for justification, discussion, and
...
@@ -61,17 +61,17 @@ jump to the in-depth discussion about any subject referenced.
...
@@ -61,17 +61,17 @@ jump to the in-depth discussion about any subject referenced.
Source Code
Source Code
-----------
-----------
Grab the code at
Bitbucket
::
Grab the code at
Github
::
$
hg clone https://bitbucket.org
/pypa/setuptools
$
git checkout https://github.com
/pypa/setuptools
If you want to contribute changes, we recommend you fork the repository on
If you want to contribute changes, we recommend you fork the repository on
Bitbucket
, commit the changes to your repository, and then make a pull request
Github
, commit the changes to your repository, and then make a pull request
on
Bitbucket
. If you make some changes, don't forget to:
on
Github
. If you make some changes, don't forget to:
- add a note in CHANGES.txt
- add a note in CHANGES.txt
Please commit all changes in the '
default
' branch against the latest available
Please commit all changes in the '
master
' branch against the latest available
commit or for bug-fixes, against an earlier commit or release in which the
commit or for bug-fixes, against an earlier commit or release in which the
bug occurred.
bug occurred.
...
@@ -79,12 +79,11 @@ If you find yourself working on more than one issue at a time, Setuptools
...
@@ -79,12 +79,11 @@ If you find yourself working on more than one issue at a time, Setuptools
generally prefers Git-style branches, so use Mercurial bookmarks or Git
generally prefers Git-style branches, so use Mercurial bookmarks or Git
branches or multiple forks to maintain separate efforts.
branches or multiple forks to maintain separate efforts.
Setuptools also maintains an unofficial `Git mirror in Github
The Continuous Integration tests that validate every release are run
<https://github.com/jaraco/setuptools>`_. Contributors are welcome to submit
from this repository.
pull requests here, but because they are not integrated with the Bitbucket
Issue tracker, linking pull requests to tickets is more difficult. The
For posterity, the old `Bitbucket mirror
Continuous Integration tests that validate every release are run from this
<https://bitbucket.org/pypa/setuptools>`_ is available.
mirror.
-------
-------
Testing
Testing
...
...
docs/setuptools.txt
View file @
3b90be7b
...
@@ -2658,5 +2658,5 @@ confirmed via the list are actual bugs, and which you have reduced to a minimal
...
@@ -2658,5 +2658,5 @@ confirmed via the list are actual bugs, and which you have reduced to a minimal
set of steps to reproduce.
set of steps to reproduce.
.. _distutils-sig mailing list: http://mail.python.org/pipermail/distutils-sig/
.. _distutils-sig mailing list: http://mail.python.org/pipermail/distutils-sig/
.. _setuptools bug tracker: https://
bitbucket.org
/pypa/setuptools/
.. _setuptools bug tracker: https://
github.com
/pypa/setuptools/
pkg_resources/tests/test_resources.py
View file @
3b90be7b
...
@@ -717,7 +717,7 @@ class TestNamespaces:
...
@@ -717,7 +717,7 @@ class TestNamespaces:
sys.path is imported, and that the namespace package's __path__ is in
sys.path is imported, and that the namespace package's __path__ is in
the correct order.
the correct order.
Regression test for https://
bitbucket.org
/pypa/setuptools/issues/207
Regression test for https://
github.com
/pypa/setuptools/issues/207
"""
"""
tmpdir
=
symlinked_tmpdir
tmpdir
=
symlinked_tmpdir
...
...
release.py
View file @
3b90be7b
...
@@ -15,6 +15,6 @@ files_with_versions = 'setuptools/version.py',
...
@@ -15,6 +15,6 @@ files_with_versions = 'setuptools/version.py',
# bdist_wheel must be included or pip will break
# bdist_wheel must be included or pip will break
dist_commands
=
'sdist'
,
'bdist_wheel'
dist_commands
=
'sdist'
,
'bdist_wheel'
test_info
=
"Travis-CI tests: http://travis-ci.org/#!/
jaraco
/setuptools"
test_info
=
"Travis-CI tests: http://travis-ci.org/#!/
pypa
/setuptools"
os
.
environ
[
"SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES"
]
=
"1"
os
.
environ
[
"SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES"
]
=
"1"
setup.py
View file @
3b90be7b
...
@@ -78,7 +78,7 @@ setup_params = dict(
...
@@ -78,7 +78,7 @@ setup_params = dict(
author_email
=
"distutils-sig@python.org"
,
author_email
=
"distutils-sig@python.org"
,
long_description
=
long_description
,
long_description
=
long_description
,
keywords
=
"CPAN PyPI distutils eggs package management"
,
keywords
=
"CPAN PyPI distutils eggs package management"
,
url
=
"https://
bitbucket.org
/pypa/setuptools"
,
url
=
"https://
github.com
/pypa/setuptools"
,
src_root
=
src_root
,
src_root
=
src_root
,
packages
=
setuptools
.
find_packages
(
exclude
=
[
'*.tests'
]),
packages
=
setuptools
.
find_packages
(
exclude
=
[
'*.tests'
]),
package_data
=
package_data
,
package_data
=
package_data
,
...
...
setuptools/command/easy_install.py
View file @
3b90be7b
...
@@ -780,7 +780,7 @@ class easy_install(Command):
...
@@ -780,7 +780,7 @@ class easy_install(Command):
There are a couple of template scripts in the package. This
There are a couple of template scripts in the package. This
function loads one of them and prepares it for use.
function loads one of them and prepares it for use.
"""
"""
# See https://
bitbucket.org/pypa/setuptools/issue
/134 for info
# See https://
github.com/pypa/setuptools/issues
/134 for info
# on script file naming and downstream issues with SVR4
# on script file naming and downstream issues with SVR4
name
=
'script.tmpl'
name
=
'script.tmpl'
if
dev_path
:
if
dev_path
:
...
@@ -1762,7 +1762,7 @@ def _update_zipimporter_cache(normalized_path, cache, updater=None):
...
@@ -1762,7 +1762,7 @@ def _update_zipimporter_cache(normalized_path, cache, updater=None):
# * Does not support the dict.pop() method, forcing us to use the
# * Does not support the dict.pop() method, forcing us to use the
# get/del patterns instead. For more detailed information see the
# get/del patterns instead. For more detailed information see the
# following links:
# following links:
# https://
bitbucket.org/pypa/setuptools/issue/202/more-robust-zipimporter-cache-invalidation#comment-1049596
0
# https://
github.com/pypa/setuptools/issues/202#issuecomment-20291342
0
# https://bitbucket.org/pypy/pypy/src/dd07756a34a41f674c0cacfbc8ae1d4cc9ea2ae4/pypy/module/zipimport/interp_zipimport.py#cl-99
# https://bitbucket.org/pypy/pypy/src/dd07756a34a41f674c0cacfbc8ae1d4cc9ea2ae4/pypy/module/zipimport/interp_zipimport.py#cl-99
old_entry
=
cache
[
p
]
old_entry
=
cache
[
p
]
del
cache
[
p
]
del
cache
[
p
]
...
...
setuptools/command/install.py
View file @
3b90be7b
...
@@ -8,7 +8,7 @@ import distutils.command.install as orig
...
@@ -8,7 +8,7 @@ import distutils.command.install as orig
import
setuptools
import
setuptools
# Prior to numpy 1.9, NumPy relies on the '_install' name, so provide it for
# Prior to numpy 1.9, NumPy relies on the '_install' name, so provide it for
# now. See https://
bitbucket.org/pypa/setuptools/issue
/199/
# now. See https://
github.com/pypa/setuptools/issues
/199/
_install
=
orig
.
install
_install
=
orig
.
install
...
...
setuptools/dist.py
View file @
3b90be7b
...
@@ -720,7 +720,7 @@ class Feature:
...
@@ -720,7 +720,7 @@ class Feature:
"""
"""
**deprecated** -- The `Feature` facility was never completely implemented
**deprecated** -- The `Feature` facility was never completely implemented
or supported, `has reported issues
or supported, `has reported issues
<https://
bitbucket.org/pypa/setuptools/issue
/58>`_ and will be removed in
<https://
github.com/pypa/setuptools/issues
/58>`_ and will be removed in
a future version.
a future version.
A subset of the distribution that can be excluded if unneeded/wanted
A subset of the distribution that can be excluded if unneeded/wanted
...
@@ -777,7 +777,7 @@ class Feature:
...
@@ -777,7 +777,7 @@ class Feature:
def
warn_deprecated
():
def
warn_deprecated
():
warnings
.
warn
(
warnings
.
warn
(
"Features are deprecated and will be removed in a future "
"Features are deprecated and will be removed in a future "
"version. See http
://bitbucket.org/pypa/setuptool
s/65."
,
"version. See http
s://github.com/pypa/setuptools/issue
s/65."
,
DeprecationWarning
,
DeprecationWarning
,
stacklevel
=
3
,
stacklevel
=
3
,
)
)
...
...
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