Skip to content

Commit 2b9d230

Browse files
author
Graham Higgins
committed
Remove support for 2.5 and 3.2
1 parent f854cf4 commit 2b9d230

File tree

3 files changed

+3
-19
lines changed

3 files changed

+3
-19
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,11 @@ env:
88
- DB=mysql
99
- DB=sqlite
1010
python:
11-
- "2.5"
1211
- "2.6"
1312
- "2.7"
14-
- "3.2"
1513
- "3.3"
1614
- "3.4"
1715
install:
18-
- if [[ ${TRAVIS_PYTHON_VERSION} == '2.5' ]]; then pip install simplejson==2.0.9; fi
1916
- if [[ ${TRAVIS_PYTHON_VERSION%%.*} == '2' ]]; then pip install -r requirements-py2.txt --use-mirrors; fi
2017
- if [[ ${TRAVIS_PYTHON_VERSION%%.*} == '3' ]]; then pip install -r requirements-py3.txt --use-mirrors; fi
2118
- if [[ ${TRAVIS_PYTHON_VERSION} == 'pypy' ]]; then pip install --upgrade 'git+https://github.com/gjhiggins/isodate#egg=isodate'; fi

requirements-py3.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
-e git+https://github.com/RDFLib/rdflib.git#egg=rdflib
22
psycopg2
3-
# http://cdn.mysql.com/Downloads/Connector-Python/mysql-connector-python-1.0.10.zip
43
http://cdn.mysql.com/Downloads/Connector-Python/mysql-connector-python-2.0.2.zip
54
-e git+https://github.com/davispuh/MySQL-for-Python-3#egg=MySQL-python

tox.ini

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py25,py26,py27,cover,py32,py34
3+
py26,py27,cover,py33,py34
44

55
[testenv]
66
commands =
@@ -13,21 +13,9 @@ deps =
1313
psycopg2
1414
MySQL-python
1515

16-
[testenv:py25]
17-
basepython = python2.5
18-
commands =
19-
{envpython} setup.py clean --all
20-
{envpython} setup.py nosetests
21-
deps =
22-
nose
23-
git+http://github.com/RDFLib/rdflib#egg=rdflib
24-
SQLAlchemy
25-
pysqlite
26-
psycopg2
27-
MySQL-python
2816

29-
[testenv:py32]
30-
basepython = python3.2
17+
[testenv:py33]
18+
basepython = python3.3
3119
commands =
3220
{envpython} setup.py clean --all
3321
{envpython} setup.py build

0 commit comments

Comments
 (0)