From 5b770f351b36b7aa3ae9db42496872455392c320 Mon Sep 17 00:00:00 2001 From: Flavio Curella Date: Thu, 13 Aug 2015 11:56:31 -0500 Subject: [PATCH 1/3] added python 3.3 to travis --- .travis.yml | 1 + test-requirements-py3.3.txt | 1 + 2 files changed, 2 insertions(+) create mode 100644 test-requirements-py3.3.txt diff --git a/.travis.yml b/.travis.yml index eab0e28..2ef6281 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,6 +30,7 @@ before_script: - "flake8 --exclude=docs,south_migrations --ignore=E501,E123,E124,E126,E127,E128 --statistics .;" python: - "2.7" + - "3.3" - "3.4" env: - DJANGO="Django>=1.7,<1.8",CELERY="celery>=3.0,<4.0" diff --git a/test-requirements-py3.3.txt b/test-requirements-py3.3.txt new file mode 100644 index 0000000..dc906c0 --- /dev/null +++ b/test-requirements-py3.3.txt @@ -0,0 +1 @@ +-r test-requirements.txt \ No newline at end of file From 9696be198203df670b8ea433b91d3bdabfc49478 Mon Sep 17 00:00:00 2001 From: Flavio Curella Date: Thu, 13 Aug 2015 12:08:06 -0500 Subject: [PATCH 2/3] Added python 3.3 classifier --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 23921dc..445525d 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,7 @@ def read(fname): 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Framework :: Django', 'Topic :: Scientific/Engineering :: Information Analysis', From e798e74139d7badda6e33243e4d36e01a421aa92 Mon Sep 17 00:00:00 2001 From: Flavio Curella Date: Thu, 13 Aug 2015 12:09:15 -0500 Subject: [PATCH 3/3] Updated release notes --- docs/changelog.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index 3ac3294..3bda5c3 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,10 @@ Changelog ========= +* v0.2.2 + * Added Python 3.3 Trove classifier to `setup.py`. +* v0.2.1 + * Added Python 3.4 Trove classifier to `setup.py`. * v0.2.0 * Added support for Python 3.4 * Dropped support for Celery 2.x