Commit fe636011 authored by Jason Madden's avatar Jason Madden

Drop support for Python 3.4

parent 21a6187b
...@@ -2,7 +2,6 @@ language: python ...@@ -2,7 +2,6 @@ language: python
dist: xenial dist: xenial
python: python:
- 2.7 - 2.7
- 3.4
- 3.5 - 3.5
- 3.6 - 3.6
- 3.7 - 3.7
......
...@@ -2,14 +2,17 @@ ...@@ -2,14 +2,17 @@
Change History Change History
================ ================
5.5.2 (unreleased) 5.6.0 (unreleased)
================== ==================
- Make repozo's recover mode atomic by recovering the backup in a - Make repozo's recover mode atomic by recovering the backup in a
temporary file which is then moved to the expected output file. temporary file which is then moved to the expected output file.
- Add a new option to repozo in recover mode which allows to verify - Add a new option to repozo in recover mode which allows to verify
backups integrity on the fly. backups integrity on the fly.
- Drop support for Python 3.4.
5.5.1 (2018-10-25) 5.5.1 (2018-10-25)
================== ==================
......
...@@ -2,8 +2,6 @@ environment: ...@@ -2,8 +2,6 @@ environment:
matrix: matrix:
- python: 27 - python: 27
- python: 27-x64 - python: 27-x64
- python: 34
- python: 34-x64
- python: 35 - python: 35
- python: 35-x64 - python: 35-x64
- python: 36 - python: 36
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
############################################################################## ##############################################################################
from setuptools import setup, find_packages from setuptools import setup, find_packages
version = '5.5.2.dev0' version = '5.6.0.dev0'
classifiers = """\ classifiers = """\
Intended Audience :: Developers Intended Audience :: Developers
...@@ -22,7 +22,6 @@ Programming Language :: Python ...@@ -22,7 +22,6 @@ Programming Language :: Python
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
...@@ -88,5 +87,5 @@ setup( ...@@ -88,5 +87,5 @@ setup(
repozo = ZODB.scripts.repozo:main repozo = ZODB.scripts.repozo:main
""", """,
include_package_data=True, 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.*',
) )
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
# Jython 2.7rc2 does work, but unfortunately has an issue running # Jython 2.7rc2 does work, but unfortunately has an issue running
# with Tox 1.9.2 (http://bugs.jython.org/issue2325) # with Tox 1.9.2 (http://bugs.jython.org/issue2325)
#envlist = py26,py27,py33,py34,pypy,simple,jython,pypy3 #envlist = py26,py27,py33,py34,pypy,simple,jython,pypy3
envlist = py27,py34,py35,py36,py37,pypy,pypy3 envlist = py27,py35,py36,py37,pypy,pypy3
[testenv] [testenv]
# ZODB.tests.testdocumentation needs to find # ZODB.tests.testdocumentation needs to find
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment