Skip to content

Commit c79c854

Browse files
committed
Drop py2.6, 3.2 and 3.3 support. Add py3.6 support
1 parent 9b20da2 commit c79c854

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ If you want to insert fixtures to the cached database, use ``initdb_handler`` op
123123

124124
Requirements
125125
============
126-
* Python 2.6, 2.7, 3.2, 3.3, 3.4, 3.5
126+
* Python 2.7, 3.4, 3.5, 3.6
127127
* pg8000 1.10
128128

129129
License

tests/test_postgresql.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# -*- coding: utf-8 -*-
22

33
import os
4-
import sys
54
import signal
65
import tempfile
6+
import unittest
77
import testing.postgresql
88
from time import sleep
99
from shutil import rmtree
@@ -12,11 +12,6 @@
1212
import sqlalchemy
1313
from contextlib import closing
1414

15-
if sys.version_info < (2, 7):
16-
import unittest2 as unittest
17-
else:
18-
import unittest
19-
2015

2116
class TestPostgresql(unittest.TestCase):
2217
def test_basic(self):

tox.ini

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py26,py27,py32,py33,py34,py35
2+
envlist=py27,py34,py35,py36
33

44
[testenv]
55
deps=
@@ -13,11 +13,6 @@ commands=
1313
nosetests
1414
flake8 --exclude=.tox/
1515

16-
[testenv:py26]
17-
deps=
18-
{[testenv]deps}
19-
unittest2
20-
2116
[testenv:coverage]
2217
deps=
2318
{[testenv]deps}

0 commit comments

Comments
 (0)