Skip to content

Commit

Permalink
Add support for Python 3.8, drop support for Python 2.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Jun 26, 2019
1 parent 6ec177d commit 535d978
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 13 deletions.
8 changes: 3 additions & 5 deletions .travis.yml
@@ -1,17 +1,15 @@
language: python
sudo: false
dist: xenial
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8-dev
- pypy
- pypy3
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
# It's important to use 'macpython' builds to get the least
# restrictive wheel tag. It's also important to avoid
# 'homebrew 3' because it floats instead of being a specific version.
Expand Down
8 changes: 5 additions & 3 deletions CHANGES.rst
Expand Up @@ -2,10 +2,12 @@
Changelog
===========

1.0.5 (unreleased)
==================
1.1 (unreleased)
================

- Add support for Python 3.8b1.

- Nothing changed yet.
- Drop support for Python 3.4.


1.0.4 (2019-06-12)
Expand Down
2 changes: 0 additions & 2 deletions appveyor.yml
Expand Up @@ -7,8 +7,6 @@ environment:
matrix:
- python: 27
- python: 27-x64
- python: 34
- python: 34-x64
- python: 35
- python: 35-x64
- python: 36
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -42,7 +42,7 @@

setup(
name='zodbpickle',
version='1.0.5.dev0',
version='1.1.dev0',
description='Fork of Python 2 and 3 pickle module.',
author='Python and Zope Foundation',
author_email='zodb-dev@zope.org',
Expand All @@ -57,10 +57,10 @@
'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',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: Implementation :: Jython',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,7 +1,7 @@
[tox]
# Jython 2.7rc2 does work, but unfortunately has an issue running
# with Tox 1.9.2 (http://bugs.jython.org/issue2325)
envlist = py27,py34,py35,py36,py37,pypy,pypy3,coverage-report
envlist = py27,py35,py36,py37,py38,pypy,pypy3,coverage-report

[testenv]
usedevelop = True
Expand Down

0 comments on commit 535d978

Please sign in to comment.