From 7cb05aaaf73b1867660277a0a8484332c7853e68 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sat, 19 Sep 2015 11:45:50 +0300 Subject: [PATCH 1/3] travis: test under Python 3.5 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index b433c56..278ee88 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ python: - "3.2" - "3.3" - "3.4" + - "3.5" install: - pip install . From 45d4ccae7637afeecc2b60a0cb30806d6e1a6f76 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sat, 19 Sep 2015 11:58:30 +0300 Subject: [PATCH 2/3] use --assert=plain on Travis --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 278ee88..f83f5a8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,7 +15,7 @@ install: script: - pep8 amodem/ scripts/ - echo "Hello World!" | amodem send -vv -l- -o- | amodem recv -vv -l- -i- - - coverage run --source=amodem --omit="*/__main__.py" -m py.test -vvs + - coverage run --source=amodem --omit="*/__main__.py" -m py.test -vvs --assert=plain after_success: - coverage report From 3b8f913fcbf8f7232e59c88f9a92bc05845928c9 Mon Sep 17 00:00:00 2001 From: Roman Zeyde Date: Sat, 19 Sep 2015 12:01:52 +0300 Subject: [PATCH 3/3] setup: Python 3.5 is supported --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 7027b67..e556710 100644 --- a/setup.py +++ b/setup.py @@ -48,6 +48,7 @@ setup( 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: System :: Networking', 'Topic :: Communications',