From 9f8f37d07d0e50439e3423855bc888b9129644e0 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Thu, 15 May 2014 01:16:38 +0300 Subject: [PATCH 1/2] Add Python 3.4 to classifiers. I tested Gunicorn with the following command on Pytohn 3.4.0: $ python3.4 -m venv venv34 $ . venv34/bin/activate $ pip install -e . $ pip install -r requirements_dev.txt $ py.test tests/ --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 050ab617..6b6e474e 100644 --- a/setup.py +++ b/setup.py @@ -24,6 +24,7 @@ CLASSIFIERS = [ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', 'Topic :: Internet', 'Topic :: Utilities', 'Topic :: Software Development :: Libraries :: Python Modules', From 08ec1b2c703648691468763728174f8fdc4e2d06 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Thu, 15 May 2014 01:19:49 +0300 Subject: [PATCH 2/2] Also, enable Python 3.4 on Travis CI. (The "--use-mirrors" option was deprecated, so I removed it.) --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c602bb2f..2dea0409 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,9 +3,10 @@ python: - "2.6" - "2.7" - "3.3" + - "3.4" - "pypy" install: - - "pip install -r requirements_dev.txt --use-mirrors" + - "pip install -r requirements_dev.txt" - "python setup.py install" script: py.test -x tests/ branches: