Commit a4476cad authored by Reinout van Rees's avatar Reinout van Rees

Dropped python 3.2 as setuptools prints deprecation warnings

The tests fail to run due to the deprecation warnings, so I stripped 3.2 out of travis.

Added 3.5 instead as that's the most modern version.
parent 13d94d86
...@@ -2,9 +2,9 @@ language: python ...@@ -2,9 +2,9 @@ language: python
env: env:
- PYTHON_VER=2.6 - PYTHON_VER=2.6
- PYTHON_VER=2.7 - PYTHON_VER=2.7
- PYTHON_VER=3.2
- PYTHON_VER=3.3 - PYTHON_VER=3.3
- PYTHON_VER=3.4 - PYTHON_VER=3.4
- PYTHON_VER=3.5
sudo: false sudo: false
cache: cache:
......
...@@ -12,6 +12,10 @@ Change History ...@@ -12,6 +12,10 @@ Change History
Now all this information is logged and displayed in case of an error. Now all this information is logged and displayed in case of an error.
[reinout] [reinout]
- Dropped 3.2 support (at least in the automatic tests) as setuptools will
soon stop supporting it. Added python 3.5 to the automatic tests.
[reinout]
2.4.7 (2015-10-29) 2.4.7 (2015-10-29)
================== ==================
......
...@@ -102,9 +102,9 @@ setup( ...@@ -102,9 +102,9 @@ setup(
'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Build Tools', 'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Libraries :: Python Modules',
], ],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment