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
50692664
Commit
50692664
authored
Mar 25, 2016
by
Tres Seaver
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #18 from zopefoundation/drop-py26-py32
Drop support for Python 2.6 and 3.2.
parents
f7ef5f96
1cfbd52b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
10 deletions
+11
-10
.travis.yml
.travis.yml
+1
-3
CHANGES.rst
CHANGES.rst
+1
-1
setup.py
setup.py
+7
-4
tox.ini
tox.ini
+2
-2
No files found.
.travis.yml
View file @
50692664
language
:
python
language
:
python
sudo
:
false
sudo
:
false
python
:
python
:
-
2.6
-
2.7
-
2.7
-
3.2
-
3.3
-
3.3
-
3.4
-
3.4
-
pypy
-
pypy
install
:
install
:
-
pip install -U setuptools
distribute
-
pip install -U setuptools
-
python bootstrap.py
-
python bootstrap.py
-
bin/buildout
-
bin/buildout
script
:
script
:
...
...
CHANGES.rst
View file @
50692664
...
@@ -4,7 +4,7 @@ Changelog
...
@@ -4,7 +4,7 @@ Changelog
4.2.0 (unreleased)
4.2.0 (unreleased)
------------------
------------------
-
TBD
-
Drop support for Python 2.6 and 3.2.
4.2.0b1 (2015-06-05)
4.2.0b1 (2015-06-05)
--------------------
--------------------
...
...
setup.py
View file @
50692664
...
@@ -18,19 +18,22 @@ from setuptools import setup, find_packages
...
@@ -18,19 +18,22 @@ from setuptools import setup, find_packages
import
os
import
os
import
sys
import
sys
if
sys
.
version_info
<
(
2
,
6
):
if
sys
.
version_info
<
(
2
,
7
):
print
(
"This version of ZEO requires Python 2.
6
or higher"
)
print
(
"This version of ZEO requires Python 2.
7
or higher"
)
sys
.
exit
(
0
)
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
=
"""
\
classifiers
=
"""
\
Intended Audience :: Developers
Intended Audience :: Developers
License :: OSI Approved :: Zope Public License
License :: OSI Approved :: Zope Public License
Programming Language :: Python
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3
Programming Language :: Python :: 3.2
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.4
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: CPython
...
...
tox.ini
View file @
50692664
[tox]
[tox]
envlist
=
envlist
=
py2
6,py27,py32
,py33,py34,pypy,simple
py2
7
,py33,py34,pypy,simple
[testenv]
[testenv]
commands
=
commands
=
...
@@ -26,5 +26,5 @@ deps =
...
@@ -26,5 +26,5 @@ deps =
basepython
=
basepython
=
python2.7
python2.7
commands
=
commands
=
python
setup.py
test
-q
python
setup.py
-q
test
-q
deps
=
{[testenv]deps}
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