Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos.buildout
Commits
d85fdb7a
Commit
d85fdb7a
authored
Mar 19, 2018
by
Reinout van Rees
Committed by
GitHub
Mar 19, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #443 from enkidulan/fix/attribute_error_looking_for_SetuptoolsVersion_#442
Fix for #442 issue
parents
b49bfd6e
f10033bc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
CHANGES.rst
CHANGES.rst
+1
-1
src/zc/buildout/easy_install.py
src/zc/buildout/easy_install.py
+2
-2
No files found.
CHANGES.rst
View file @
d85fdb7a
...
...
@@ -4,7 +4,7 @@ Change History
2.11.2
(
unreleased
)
===================
-
Nothing
changed
yet
.
-
Fix
#
442
issue
.
[
enkidulan
]
2.11.1
(
2018
-
03
-
01
)
...
...
src/zc/buildout/easy_install.py
View file @
d85fdb7a
...
...
@@ -42,8 +42,8 @@ try:
from
setuptools
import
__version__
as
setuptools_version
# Now we need to check if we have at least 38.2.3 for namespace support.
SETUPTOOLS_SUPPORTS_WHEELS
=
(
pkg_resources
.
SetuptoolsV
ersion
(
setuptools_version
)
>=
pkg_resources
.
SetuptoolsV
ersion
(
'38.2.3'
))
pkg_resources
.
parse_v
ersion
(
setuptools_version
)
>=
pkg_resources
.
parse_v
ersion
(
'38.2.3'
))
except
ImportError
:
SETUPTOOLS_SUPPORTS_WHEELS
=
False
...
...
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