summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavanum Srinivas <davanum@gmail.com>2015-05-08 16:02:26 -0400
committerDavanum Srinivas <davanum@gmail.com>2015-05-13 11:39:43 -0400
commit2ef21b3210cd66cf049c6d7ba3b15a6242877c0c (patch)
treefe9f205ba97fec1c2aa3914e0326ed8ce640ca95
parent7181188259d1982683ea054ca61e29ddfecb5305 (diff)
downloadstevedore-2ef21b3210cd66cf049c6d7ba3b15a6242877c0c.tar.gz
Fix Python versions supported
We have CI for 2.6, 2.7, 3.4. So make sure all references to other versions are removed and all 3 versions above are correctly mentioned where required. Make sure we specify 3.4 everywhere needed Change-Id: I2c90bccfc7495bf8197319196a12b2a8bd0519f1
-rw-r--r--doc/source/install.rst2
-rw-r--r--setup.cfg4
-rw-r--r--stevedore/example/setup.py4
-rw-r--r--tox.ini2
4 files changed, 6 insertions, 6 deletions
diff --git a/doc/source/install.rst b/doc/source/install.rst
index 91e5a50..da49430 100644
--- a/doc/source/install.rst
+++ b/doc/source/install.rst
@@ -5,7 +5,7 @@ Installation
Python Versions
===============
-stevedore is tested under Python 2.7 and 3.3.
+stevedore is tested under Python 2.6, 2.7 and 3.4.
.. _install-basic:
diff --git a/setup.cfg b/setup.cfg
index 9905785..b3df21d 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -10,10 +10,10 @@ classifier =
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 2
+ Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
- Programming Language :: Python :: 3.2
- Programming Language :: Python :: 3.3
+ Programming Language :: Python :: 3.4
Intended Audience :: Developers
Environment :: Console
diff --git a/stevedore/example/setup.py b/stevedore/example/setup.py
index bac1c1f..afc7789 100644
--- a/stevedore/example/setup.py
+++ b/stevedore/example/setup.py
@@ -16,10 +16,10 @@ setup(
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
+ 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.2',
- 'Programming Language :: Python :: 3.3',
+ 'Programming Language :: Python :: 3.4',
'Intended Audience :: Developers',
'Environment :: Console',
],
diff --git a/tox.ini b/tox.ini
index fe0d789..490a4cd 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py33,py34,py26,py27,pypy,pep8,docs
+envlist = py34,py26,py27,pypy,pep8,docs
[testenv]
deps =