>From Ubuntu 16.04 LTS, the default version of Python 3 has been
upgraded to 3.5.1.
  e.g.)
    $ python3 --version
    Python 3.5.1+

This patch enables to run unit tests on Python 3.5 environment.

Signed-off-by: IWASE Yusuke <[email protected]>
---
 .travis.yml | 3 ++-
 tox.ini     | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 7e54c63..9c352b0 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,10 +1,11 @@
 language: python
 python:
-  - "2.7"
+  - "3.5"  # Python 3.5 still needs to be installed on Travis-CI
 
 env:
   - TOX_ENV=py27
   - TOX_ENV=py34
+  - TOX_ENV=py35
   - TOX_ENV=pypy26
   - TOX_ENV=pep8
 
diff --git a/tox.ini b/tox.ini
index 1306352..f927e65 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py27,py34,pypy26,pep8
+envlist = py27,py34,py35,pypy26,pep8
 
 [testenv]
 deps = -U
-- 
2.7.4


------------------------------------------------------------------------------
Mobile security can be enabling, not merely restricting. Employees who
bring their own devices (BYOD) to work are irked by the imposition of MDM
restrictions. Mobile Device Manager Plus allows you to control only the
apps on BYO-devices by containerizing them, leaving personal data untouched!
https://ad.doubleclick.net/ddm/clk/304595813;131938128;j
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel

Reply via email to