Skip to content

Commit

Permalink
Merge pull request #265 from zopefoundation/drop34
Browse files Browse the repository at this point in the history
Drop support for Python 3.4
  • Loading branch information
jamadden committed May 8, 2019
2 parents 21a6187 + fe63601 commit cf15ac8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -2,7 +2,6 @@ language: python
dist: xenial
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
Expand Down
5 changes: 4 additions & 1 deletion CHANGES.rst
Expand Up @@ -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)
==================

Expand Down
2 changes: 0 additions & 2 deletions appveyor.yml
Expand Up @@ -2,8 +2,6 @@ environment:
matrix:
- python: 27
- python: 27-x64
- python: 34
- python: 34-x64
- python: 35
- python: 35-x64
- python: 36
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Expand Up @@ -13,7 +13,7 @@
##############################################################################
from setuptools import setup, find_packages

version = '5.5.2.dev0'
version = '5.6.0.dev0'

classifiers = """\
Intended Audience :: Developers
Expand All @@ -22,7 +22,6 @@
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
Expand Down Expand Up @@ -88,5 +87,5 @@ def read(path):
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.*',
)
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -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,py34,py35,py36,py37,pypy,pypy3
envlist = py27,py35,py36,py37,pypy,pypy3

[testenv]
# ZODB.tests.testdocumentation needs to find
Expand Down

0 comments on commit cf15ac8

Please sign in to comment.