Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
fuchsia.googlesource.com-third_party-python-testing-cabal-mock
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fuchsia-mirror
fuchsia.googlesource.com-third_party-python-testing-cabal-mock
Commits
30d1135d
Commit
30d1135d
authored
9 years ago
by
Rob McQueen
Committed by
Robert Collins
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Abort installation if the installer is using setuptools<17.1
parent
76f2db4f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+11
-0
11 additions, 0 deletions
setup.py
with
11 additions
and
0 deletions
setup.py
+
11
−
0
View file @
30d1135d
#!/usr/bin/env python
from
distutils.version
import
StrictVersion
import
setuptools
import
sys
# Setuptools 17.1 is required, and setup_requires cannot upgrade setuptools
# in-place, nor trigger the use of a newer version. Abort cleanly up-front.
setuptools_required
=
StrictVersion
(
"
17.1
"
)
setuptools_installed
=
StrictVersion
(
setuptools
.
version
.
__version__
)
if
setuptools_installed
<
setuptools_required
:
sys
.
stderr
.
write
(
"
mock requires setuptools>=17.1. Aborting installation
\n
"
)
sys
.
exit
(
1
)
setuptools
.
setup
(
setup_requires
=
[
'
pbr>=1.3
'
],
pbr
=
True
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment