Commit c9d51f54 authored by Hanno Schlichting's avatar Hanno Schlichting

Drop Python 3.3 compatibility, add Python 3.6 compatibility.

parent 277b37a9
...@@ -2,14 +2,15 @@ language: python ...@@ -2,14 +2,15 @@ language: python
sudo: false sudo: false
python: python:
- "2.7" - "2.7"
- "3.3"
- "3.4" - "3.4"
- "3.5" - "3.5"
- "3.6"
- "pypy" - "pypy"
- "pypy3" - "pypy3.3-5.2-alpha1"
install: install:
- python bootstrap.py - pip install zc.buildout
- bin/buildout - buildout bootstrap
- buildout
script: script:
- bin/test -v1 - bin/test -v1
notifications: notifications:
......
...@@ -4,6 +4,8 @@ Changelog ...@@ -4,6 +4,8 @@ Changelog
4.0 - unreleased 4.0 - unreleased
---------------- ----------------
- Drop Python 3.3 compatibility, add Python 3.6 compatibility.
- Require ZODB 5.0 or newer. - Require ZODB 5.0 or newer.
3.1 - unreleased 3.1 - unreleased
......
...@@ -32,9 +32,9 @@ setup(name='tempstorage', ...@@ -32,9 +32,9 @@ setup(name='tempstorage',
"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.3",
"Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
], ],
......
[tox] [tox]
envlist = envlist =
py27,py33,py34,py35,pypy,pypy3 py27,py34,py35,py36,pypy,pypy3
[testenv] [testenv]
commands = commands =
......
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