Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZODB
Commits
fe636011
Commit
fe636011
authored
May 08, 2019
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop support for Python 3.4
parent
21a6187b
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
8 deletions
+7
-8
.travis.yml
.travis.yml
+0
-1
CHANGES.rst
CHANGES.rst
+4
-1
appveyor.yml
appveyor.yml
+0
-2
setup.py
setup.py
+2
-3
tox.ini
tox.ini
+1
-1
No files found.
.travis.yml
View file @
fe636011
...
...
@@ -2,7 +2,6 @@ language: python
dist
:
xenial
python
:
-
2.7
-
3.4
-
3.5
-
3.6
-
3.7
...
...
CHANGES.rst
View file @
fe636011
...
...
@@ -2,14 +2,17 @@
Change History
================
5.
5.2
(unreleased)
5.
6.0
(unreleased)
==================
- Make repozo's recover mode atomic by recovering the backup in a
temporary file which is then moved to the expected output file.
- Add a new option to repozo in recover mode which allows to verify
backups integrity on the fly.
- Drop support for Python 3.4.
5.5.1 (2018-10-25)
==================
...
...
appveyor.yml
View file @
fe636011
...
...
@@ -2,8 +2,6 @@ environment:
matrix
:
-
python
:
27
-
python
:
27-x64
-
python
:
34
-
python
:
34-x64
-
python
:
35
-
python
:
35-x64
-
python
:
36
...
...
setup.py
View file @
fe636011
...
...
@@ -13,7 +13,7 @@
##############################################################################
from
setuptools
import
setup
,
find_packages
version
=
'5.
5.2
.dev0'
version
=
'5.
6.0
.dev0'
classifiers
=
"""
\
Intended Audience :: Developers
...
...
@@ -22,7 +22,6 @@ Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
...
...
@@ -88,5 +87,5 @@ setup(
repozo = ZODB.scripts.repozo:main
"""
,
include_package_data
=
True
,
python_requires
=
'>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*'
,
python_requires
=
'>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
,!=3.4.*
'
,
)
tox.ini
View file @
fe636011
...
...
@@ -2,7 +2,7 @@
# Jython 2.7rc2 does work, but unfortunately has an issue running
# with Tox 1.9.2 (http://bugs.jython.org/issue2325)
#envlist = py26,py27,py33,py34,pypy,simple,jython,pypy3
envlist
=
py27,py3
4,py3
5,py36,py37,pypy,pypy3
envlist
=
py27,py35,py36,py37,pypy,pypy3
[testenv]
# ZODB.tests.testdocumentation needs to find
...
...
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