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