From b72219ee37d47eada74c97efb185f2e99ce45514 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Mon, 14 Sep 2015 11:41:13 +0100 Subject: [PATCH 1/6] Update .travis.yml Add python 3.5.0b3 to Travis --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index d6e20db8..1a21b219 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,7 @@ python: - "3.2" - "3.3" - "3.4" + - "3.5.0b3" # command to install dependencies install: - pip install -r requirements.txt From 52175ec02917c513408eddc286374c0d44adf817 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Mon, 14 Sep 2015 11:44:12 +0100 Subject: [PATCH 2/6] Use Travis' container-based infrastructure --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 1a21b219..bb434feb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ language: python +sudo: false python: - "2.7" - "3.2" From 904d90e65ffa1ac3ada1075f5b5432ff25e3f5a0 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Mon, 14 Sep 2015 11:47:37 +0100 Subject: [PATCH 3/6] Add Python 3.5 to the list of supported versions --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index d213a07e..0177274e 100644 --- a/setup.py +++ b/setup.py @@ -54,6 +54,7 @@ def find_version(*file_paths): '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', ] ) From 43643eea4800485a3e69d51068bc6fa724dde023 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Mon, 14 Sep 2015 19:46:19 +0100 Subject: [PATCH 4/6] Use 3.5 instead of the beta one --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bb434feb..b854a873 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ python: - "3.2" - "3.3" - "3.4" - - "3.5.0b3" + - "3.5" # command to install dependencies install: - pip install -r requirements.txt From cafe8bd758740ad75076b8f280bc0c9cc6ece072 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Mon, 14 Sep 2015 19:47:18 +0100 Subject: [PATCH 5/6] Try to add nightly build of Python --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index b854a873..d69543ff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ python: - "3.3" - "3.4" - "3.5" + - "nightly" # command to install dependencies install: - pip install -r requirements.txt From 844f3635a8b9123fff893939ce982a4b462206cd Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Mon, 14 Sep 2015 19:49:34 +0100 Subject: [PATCH 6/6] Remove nightly --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d69543ff..b854a873 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,6 @@ python: - "3.3" - "3.4" - "3.5" - - "nightly" # command to install dependencies install: - pip install -r requirements.txt