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
763ebc9d
Commit
763ebc9d
authored
Jul 25, 2020
by
Jens Vagelpohl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- cleanup: remove references to obsolete Python 3.4
parent
bab110c1
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
7 deletions
+8
-7
.travis.yml
.travis.yml
+0
-2
CHANGES.rst
CHANGES.rst
+2
-0
setup.py
setup.py
+1
-2
tox.ini
tox.ini
+5
-3
No files found.
.travis.yml
View file @
763ebc9d
...
@@ -5,8 +5,6 @@ matrix:
...
@@ -5,8 +5,6 @@ matrix:
python
:
2.7
python
:
2.7
-
os
:
linux
-
os
:
linux
python
:
pypy
python
:
pypy
-
os
:
linux
python
:
3.4
-
os
:
linux
-
os
:
linux
python
:
3.5
python
:
3.5
-
os
:
linux
-
os
:
linux
...
...
CHANGES.rst
View file @
763ebc9d
...
@@ -4,6 +4,8 @@ Changelog
...
@@ -4,6 +4,8 @@ Changelog
5.2.2 (unreleased)
5.2.2 (unreleased)
------------------
------------------
- Remove support for Python 3.4
- Provide proper CA test certificates to allow the SSL tests succeed for Py3
- Provide proper CA test certificates to allow the SSL tests succeed for Py3
- Replace deprecated occurences of ``Thread.isAlive()`` by ``Thread.is_alive()``
- Replace deprecated occurences of ``Thread.isAlive()`` by ``Thread.is_alive()``
...
...
setup.py
View file @
763ebc9d
...
@@ -45,7 +45,6 @@ License :: OSI Approved :: Zope Public License
...
@@ -45,7 +45,6 @@ License :: OSI Approved :: Zope Public License
Programming Language :: Python :: 2
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.7
...
@@ -157,5 +156,5 @@ setup(name="ZEO",
...
@@ -157,5 +156,5 @@ setup(name="ZEO",
zeo-nagios = ZEO.nagios:main
zeo-nagios = ZEO.nagios:main
"""
,
"""
,
include_package_data
=
True
,
include_package_data
=
True
,
python_requires
=
'>=2.7.9,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*'
,
python_requires
=
'>=2.7.9,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
,!=3.4.*
'
,
)
)
tox.ini
View file @
763ebc9d
[tox]
[tox]
envlist
=
envlist
=
py27,py3
4,py3
5,py36,py37,pypy,pypy3,simple,docs
py27,py35,py36,py37,pypy,pypy3,simple,docs
[testenv]
[testenv]
commands
=
commands
=
...
@@ -24,16 +24,18 @@ deps =
...
@@ -24,16 +24,18 @@ deps =
msgpack
<0.6
msgpack
<0.6
# ZopeUndo is needed as soft-dependency for a regression test
# ZopeUndo is needed as soft-dependency for a regression test
ZopeUndo
ZopeUndo
[testenv:simple]
[testenv:simple]
# Test that 'setup.py test' works
# Test that 'setup.py test' works
basepython
=
basepython
=
python3.
4
python3.
6
commands
=
commands
=
python
setup.py
-q
test
-q
python
setup.py
-q
test
-q
deps
=
{[testenv]deps}
deps
=
{[testenv]deps}
[testenv:docs]
[testenv:docs]
basepython
=
basepython
=
python3.
8
python3.
6
commands
=
commands
=
sphinx-build
-b
html
doc
doc/_build/html
sphinx-build
-b
html
doc
doc/_build/html
extras
=
extras
=
...
...
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