From 9e127157fc27c697c3d7e98bac0fb5dc015fadae Mon Sep 17 00:00:00 2001 From: George Leslie-Waksman Date: Sat, 5 Mar 2016 23:30:30 -0800 Subject: [PATCH] 3.2? --- .travis.yml | 2 ++ setup.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1f6b0b0..f6c16a3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,8 @@ matrix: env: TEST_SUITE=test - python: 3.3 env: TEST_SUITE=test + - python: 3.2 + env: TEST_SUITE=test before_install: - pip install -U pip diff --git a/setup.py b/setup.py index ebca8ec..166fefc 100644 --- a/setup.py +++ b/setup.py @@ -5,8 +5,8 @@ import setuptools -if sys.version_info < (3, 3): - raise Exception('Python version < 3.3 are not supported.') +if sys.version_info < (3, 2): + raise Exception('Python version < 3.2 are not supported.') # Get version information without importing the package