Commit 772bbe0e authored by Jürgen Gmach's avatar Jürgen Gmach Committed by Jürgen Gmach

Drop support for Python 3.4.

modified:   .travis.yml
modified:   CHANGES.rst
modified:   setup.py
modified:   tox.ini
parent 8e97a561
language: python language: python
sudo: false
python: python:
- "2.7" - "2.7"
- "3.4"
- "3.5" - "3.5"
- "3.6" - "3.6"
- "pypy" - "pypy"
- "pypy3.5" - "pypy3.5"
install: install:
- pip install -U setuptools - pip install -U setuptools
- pip install zc.buildout - pip install zc.buildout
- buildout bootstrap - buildout bootstrap
- buildout - buildout
script: script:
- bin/test -v1 - bin/test -v1
notifications: notifications:
email: false email: false
cache: cache:
pip: true pip: true
directories: directories:
......
Changelog Changelog
========= =========
4.0.2 (unreleased) 5.0 (unreleased)
------------------ ------------------
- Update PyPY version. - Update PyPY version.
- Drop Python 3.4 support.
4.0.1 (2017-11-27) 4.0.1 (2017-11-27)
------------------ ------------------
......
...@@ -19,7 +19,7 @@ from setuptools import setup, find_packages ...@@ -19,7 +19,7 @@ from setuptools import setup, find_packages
long_description = (open("README.rst").read() + "\n" + long_description = (open("README.rst").read() + "\n" +
open("CHANGES.rst").read()) open("CHANGES.rst").read())
version = '4.0.2.dev0' version = '5.0.dev0'
__version__ = version __version__ = version
setup(name='tempstorage', setup(name='tempstorage',
...@@ -35,7 +35,6 @@ setup(name='tempstorage', ...@@ -35,7 +35,6 @@ 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.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
......
[tox] [tox]
envlist = envlist =
py27,py34,py35,py36,pypy,pypy3 py27,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