From 94d34d6522bf079577427f93e2e107be905dd9f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Fri, 18 Sep 2015 10:03:44 +0200 Subject: [PATCH] core: it's Python 3.5 o'clock --- README.rst | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index aa527b48..b00ad2b7 100644 --- a/README.rst +++ b/README.rst @@ -134,7 +134,7 @@ Unless stated otherwise on-file pyuv uses the MIT license, check LICENSE file. Python versions =============== -Python 2.7, 3.3 and 3.4 versions are supported. +Python 2.7, and Python >= 3.3 versions are supported. Contributing diff --git a/setup.py b/setup.py index 5071c3b4..b9afe8c2 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,8 @@ def get_version(): "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", - "Programming Language :: Python :: 3.4" + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5" ], cmdclass = {'build_ext': libuv_build_ext, 'sdist' : libuv_sdist},