Commit cb7c136b authored by Jürgen Gmach's avatar Jürgen Gmach Committed by Jürgen Gmach

Add support for Python 3.7.

modified:   .travis.yml
modified:   CHANGES.rst
modified:   setup.py
modified:   tox.ini
parent 772bbe0e
...@@ -7,6 +7,11 @@ python: ...@@ -7,6 +7,11 @@ python:
- "pypy" - "pypy"
- "pypy3.5" - "pypy3.5"
matrix:
include:
- python: "3.7"
dist: xenial
install: install:
- pip install -U setuptools - pip install -U setuptools
- pip install zc.buildout - pip install zc.buildout
......
...@@ -8,6 +8,8 @@ Changelog ...@@ -8,6 +8,8 @@ Changelog
- Drop Python 3.4 support. - Drop Python 3.4 support.
- Add support for Python 3.7.
4.0.1 (2017-11-27) 4.0.1 (2017-11-27)
------------------ ------------------
......
...@@ -37,6 +37,7 @@ setup(name='tempstorage', ...@@ -37,6 +37,7 @@ setup(name='tempstorage',
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"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 :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
], ],
......
[tox] [tox]
envlist = envlist =
py27,py35,py36,pypy,pypy3 py27,py35,py36,py37,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