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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZEO
Commits
eef2b3d7
Commit
eef2b3d7
authored
May 31, 2016
by
Jim Fulton
Browse files
Options
Browse Files
Download
Plain Diff
merged master/ZEO5
parents
7b81de19
50692664
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
8 deletions
+10
-8
.travis.yml
.travis.yml
+1
-3
CHANGES.rst
CHANGES.rst
+1
-1
setup.py
setup.py
+7
-3
tox.ini
tox.ini
+1
-1
No files found.
.travis.yml
View file @
eef2b3d7
language
:
python
sudo
:
false
python
:
-
2.6
-
2.7
-
3.2
-
3.3
-
3.4
-
pypy
install
:
-
pip install -U setuptools
distribute
-
pip install -U setuptools
-
python bootstrap.py
-
bin/buildout
script
:
...
...
CHANGES.rst
View file @
eef2b3d7
...
...
@@ -4,7 +4,7 @@ Changelog
4.2.0 (unreleased)
------------------
-
TBD
-
Drop support for Python 2.6 and 3.2.
4.2.0b1 (2015-06-05)
--------------------
...
...
setup.py
View file @
eef2b3d7
...
...
@@ -18,14 +18,18 @@ from setuptools import setup, find_packages
import
os
import
sys
if
sys
.
version_info
<
(
2
,
6
):
print
(
"This version of ZEO requires Python 2.
6
or higher"
)
if
sys
.
version_info
<
(
2
,
7
):
print
(
"This version of ZEO requires Python 2.
7
or higher"
)
sys
.
exit
(
0
)
if
(
3
,
0
)
<
sys
.
version_info
<
(
3
,
3
):
print
(
"This version of ZEO requires Python 3.3 or higher"
)
sys
.
exit
(
0
)
classifiers
=
"""
\
Intended Audience :: Developers
License :: OSI Approved :: Zope Public License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
...
...
tox.ini
View file @
eef2b3d7
...
...
@@ -26,5 +26,5 @@ deps =
basepython
=
python3.4
commands
=
python
setup.py
test
-q
python
setup.py
-q
test
-q
deps
=
{[testenv]deps}
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