summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorholger krekel (rather uses bitbucket/hpk42) <holger.krekel@gmail.com>2015-09-17 13:45:35 +0200
committerholger krekel (rather uses bitbucket/hpk42) <holger.krekel@gmail.com>2015-09-17 13:45:35 +0200
commitf32f3f19809052cc8e1fcaafe0aa4f7f99d18941 (patch)
treeb81f196204fec9551a581c3e15302a95d88f4757 /setup.py
parentbaf5b5d005dff3238a18dfc9d9d3061f67025102 (diff)
parent16f90ffc924f5c7d07f70935768228aa3181a0a3 (diff)
downloadpytest-f32f3f19809052cc8e1fcaafe0aa4f7f99d18941.tar.gz
Merge pull request #1019 from mdboom/python3.5-docs
Various updates to the docs to mention support for Python 3.5
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 8b3d21cdd..ec9c9d430 100644
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ classifiers = ['Development Status :: 6 - Mature',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities'] + [
('Programming Language :: Python :: %s' % x) for x in
- '2 2.6 2.7 3 3.2 3.3 3.4'.split()]
+ '2 2.6 2.7 3 3.2 3.3 3.4 3.5'.split()]
with open('README.rst') as fd:
long_description = fd.read()