Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZEO
Commits
c9469dde
Commit
c9469dde
authored
8 years ago
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Exit with failure codes instead of success codes on unsupported Python versions.
Fixes #75.
parent
43b415ce
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
CHANGES.rst
CHANGES.rst
+6
-0
setup.py
setup.py
+2
-2
No files found.
CHANGES.rst
View file @
c9469dde
Changelog
Changelog
=========
=========
5.0.2 (unreleased)
------------------
- Provide better error messages when pip tries to install ZEO on an
unsupported Python version. See `issue 75 <https://github.com/zopefoundation/ZEO/issues/75>`_.
5.0.1 (2016-09-06)
5.0.1 (2016-09-06)
------------------
------------------
...
...
This diff is collapsed.
Click to expand it.
setup.py
View file @
c9469dde
...
@@ -19,11 +19,11 @@ import sys
...
@@ -19,11 +19,11 @@ import sys
if
sys
.
version_info
<
(
2
,
7
,
9
):
if
sys
.
version_info
<
(
2
,
7
,
9
):
print
(
"This version of ZEO requires Python 2.7.9 or higher"
)
print
(
"This version of ZEO requires Python 2.7.9 or higher"
)
sys
.
exit
(
0
)
sys
.
exit
(
1
)
if
(
3
,
0
)
<
sys
.
version_info
<
(
3
,
4
):
if
(
3
,
0
)
<
sys
.
version_info
<
(
3
,
4
):
print
(
"This version of ZEO requires Python 3.4 or higher"
)
print
(
"This version of ZEO requires Python 3.4 or higher"
)
sys
.
exit
(
0
)
sys
.
exit
(
1
)
install_requires
=
[
install_requires
=
[
'ZODB >= 5.0.0a5'
,
'ZODB >= 5.0.0a5'
,
...
...
This diff is collapsed.
Click to expand it.
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