diff mbox

[ovs-dev] python: List 3.5 as a supported version.

Message ID 20170228133617.27804-1-russell@ovn.org
State Accepted
Headers show

Commit Message

Russell Bryant Feb. 28, 2017, 1:36 p.m. UTC
All tests pass with Python 3.5 so list it as supported.

Signed-off-by: Russell Bryant <russell@ovn.org>
---
 python/setup.py | 1 +
 1 file changed, 1 insertion(+)

Comments

Ben Pfaff March 8, 2017, 6:35 p.m. UTC | #1
On Tue, Feb 28, 2017 at 08:36:17AM -0500, Russell Bryant wrote:
> All tests pass with Python 3.5 so list it as supported.
> 
> Signed-off-by: Russell Bryant <russell@ovn.org>

Acked-by: Ben Pfaff <blp@ovn.org>
Russell Bryant March 8, 2017, 6:41 p.m. UTC | #2
On Wed, Mar 8, 2017 at 1:35 PM, Ben Pfaff <blp@ovn.org> wrote:
> On Tue, Feb 28, 2017 at 08:36:17AM -0500, Russell Bryant wrote:
>> All tests pass with Python 3.5 so list it as supported.
>>
>> Signed-off-by: Russell Bryant <russell@ovn.org>
>
> Acked-by: Ben Pfaff <blp@ovn.org>

Thanks, applied to master.
diff mbox

Patch

diff --git a/python/setup.py b/python/setup.py
index 19c1f18..a85b3d1 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -75,6 +75,7 @@  setup_args = dict(
         'Programming Language :: Python :: 2.7',
         'Programming Language :: Python :: 3',
         'Programming Language :: Python :: 3.4',
+        'Programming Language :: Python :: 3.5',
     ],
     ext_modules=[setuptools.Extension("ovs._json", sources=["ovs/_json.c"],
                                       libraries=['openvswitch'])],