From: Russell Bryant Date: Fri, 18 Dec 2015 19:53:32 +0000 (-0500) Subject: NEWS: Claim support for Python 3. X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fovs.git;a=commitdiff_plain;h=99c8be3ee47022ce7e02070a5a0a420555c9a720 NEWS: Claim support for Python 3. Also update the Python ovs package info to note that both Python 2 and 3 are supported. Signed-off-by: Russell Bryant Acked-by: Ben Pfaff --- diff --git a/NEWS b/NEWS index ba4b7f73f..d21b5081f 100644 --- 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 --------------------- diff --git a/python/setup.py b/python/setup.py index 62507ad05..49c8c4e6f 100644 --- a/python/setup.py +++ b/python/setup.py @@ -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', ] )