1 new commit in pytest:

https://bitbucket.org/hpk42/pytest/changeset/de91b23c2d0d/
changeset:   de91b23c2d0d
user:        hpk42
date:        2012-11-06 09:14:41
summary:     fix issue219 - add trove classifiers for py24-py33
affected #:  2 files

diff -r b3c9ed1fad2f4fef2e9959b2032dd56b224f6e15 -r 
de91b23c2d0d9dc9f8d8cc6966f0c7fe1c1fc8dd CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -18,6 +18,8 @@
 
 - nose support: only call setup, if its a callable
 
+- fix issue219 - add py2.4-3.3 classifiers to TROVE list
+
 
 Changes between 2.3.1 and 2.3.2
 -----------------------------------


diff -r b3c9ed1fad2f4fef2e9959b2032dd56b224f6e15 -r 
de91b23c2d0d9dc9f8d8cc6966f0c7fe1c1fc8dd setup.py
--- a/setup.py
+++ b/setup.py
@@ -43,8 +43,10 @@
                      'Topic :: Software Development :: Testing',
                      'Topic :: Software Development :: Libraries',
                      'Topic :: Utilities',
-                     'Programming Language :: Python',
-                     'Programming Language :: Python :: 3'],
+                     'Programming Language :: Python :: 2',
+                     'Programming Language :: Python :: 3'] + [
+        ("Programming Language :: Python :: %s" % x) for x in
+            "2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3".split()],
         packages=['_pytest', '_pytest.assertion'],
         py_modules=['pytest'],
         zip_safe=False,

Repository URL: https://bitbucket.org/hpk42/pytest/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
py-svn mailing list
py-svn@codespeak.net
http://codespeak.net/mailman/listinfo/py-svn

Reply via email to