NEWS: Claim support for Python 3.
authorRussell Bryant <russell@ovn.org>
Fri, 18 Dec 2015 19:53:32 +0000 (14:53 -0500)
committerRussell Bryant <russell@ovn.org>
Mon, 22 Feb 2016 20:18:03 +0000 (15:18 -0500)
Also update the Python ovs package info to note that both Python 2 and 3
are supported.

Signed-off-by: Russell Bryant <russell@ovn.org>
Acked-by: Ben Pfaff <blp@ovn.org>
NEWS
python/setup.py

diff --git a/NEWS b/NEWS
index ba4b7f7..d21b508 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -22,7 +22,9 @@ Post-v2.5.0
    - ovsdb-server:
      * Remove max number of sessions limit, to enable connection scaling
        testing.
-
+   - python:
+     * Added support for Python 3.4+ in addition to existing support
+       for 2.7+.
 
 v2.5.0 - xx xxx xxxx
 ---------------------
index 62507ad..49c8c4e 100644 (file)
@@ -41,6 +41,10 @@ setuptools.setup(
         'Topic :: Database :: Front-Ends',
         'Topic :: Software Development :: Libraries :: Python Modules',
         'Topic :: System :: Networking',
-        'License :: OSI Approved :: Apache Software License'
+        'License :: OSI Approved :: Apache Software License',
+        'Programming Language :: Python :: 2',
+        'Programming Language :: Python :: 2.7',
+        'Programming Language :: Python :: 3',
+        'Programming Language :: Python :: 3.4',
     ]
 )