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
3660b258
Commit
3660b258
authored
Oct 07, 2016
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Plain Diff
Merge suppression of namespace handling when PEP-420 can handle namespace packages.
parents
6e61c131
4893826a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
3 deletions
+7
-3
CHANGES.rst
CHANGES.rst
+3
-0
setup.cfg
setup.cfg
+1
-1
setup.py
setup.py
+1
-1
setuptools/command/install_egg_info.py
setuptools/command/install_egg_info.py
+2
-1
No files found.
CHANGES.rst
View file @
3660b258
...
...
@@ -8,6 +8,9 @@ v28.2.0
*
#
809
:
In
``
find_packages
()``,
restore
support
for
excluding
a
parent
package
without
excluding
a
child
package
.
*
#
805
:
Disable
``-
nspkg
.
pth
``
behavior
on
Python
3.3
+
where
PEP
-
420
functionality
is
adequate
.
Fixes
pip
#
1924.
v28
.1.0
-------
...
...
setup.cfg
View file @
3660b258
[bumpversion]
current_version = 28.
1
.0
current_version = 28.
2
.0
commit = True
tag = True
...
...
setup.py
View file @
3660b258
...
...
@@ -88,7 +88,7 @@ def pypi_link(pkg_filename):
setup_params
=
dict
(
name
=
"setuptools"
,
version
=
"28.
1
.0"
,
version
=
"28.
2
.0"
,
description
=
"Easily download, build, install, upgrade, and uninstall "
"Python packages"
,
author
=
"Python Packaging Authority"
,
...
...
setuptools/command/install_egg_info.py
View file @
3660b258
...
...
@@ -82,9 +82,10 @@ class install_egg_info(Command):
_nspkg_tmpl
=
(
"import sys, types, os"
,
"pep420 = sys.version_info > (3, 3)"
,
"p = os.path.join(sys._getframe(1).f_locals['sitedir'], *%(pth)r)"
,
"ie = os.path.exists(os.path.join(p,'__init__.py'))"
,
"m = not ie and "
"m = not ie and
not pep420 and
"
"sys.modules.setdefault(%(pkg)r, types.ModuleType(%(pkg)r))"
,
"mp = (m or []) and m.__dict__.setdefault('__path__',[])"
,
"(p not in mp) and mp.append(p)"
,
...
...
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