Skip to content

Commit 87e9ed4

Browse files
committed
Ensure py26 compliance (#29)
fix #19
1 parent 3e09fe2 commit 87e9ed4

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
language: python
22
python:
3+
- "2.6"
34
- "2.7"
45
- "3.4"
56
install:

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
pytest>=2.2.4
22
jira>=0.13
33
six
4+
ordereddict; python_version=='2.6'

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifier=
2121
Topic :: Software Development :: Quality Assurance
2222
Topic :: Utilities
2323
Programming Language :: Python
24+
Programming Language :: Python :: 2.6
2425
Programming Language :: Python :: 2.7
2526
[entry_points]
2627
pytest11 =

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py34,pep8
2+
envlist = py26,py27,py34,pep8
33
[testenv]
44
deps=
55
-rrequirements.txt

0 commit comments

Comments
 (0)