From 99c8be3ee47022ce7e02070a5a0a420555c9a720 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Fri, 18 Dec 2015 14:53:32 -0500 Subject: [PATCH] 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 --- NEWS | 4 +++- python/setup.py | 6 +++++- 2 files changed, 8 insertions(+), 2 deletions(-) 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', ] ) -- 2.20.1