Skip to content

Commit bf6d3a6

Browse files
authored
Merge pull request #90 from fuhrysteve/master
test framework should run on 2.7, 3.4, 3.5, & 3.6
2 parents 1a11858 + 783fc67 commit bf6d3a6

4 files changed

Lines changed: 9 additions & 10 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ __pycache_
2020
.coverage
2121
.pypirc
2222
/.idea
23+
.mypy_cache/
2324

2425
*.key
2526
*.crt

.travis.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
language: python
22
python:
3-
- '2.7.6'
4-
# - '2.7.9'
5-
# - '2.7.12'
6-
# - '3.3.4'
7-
# - '3.3.5'
8-
# - '3.3.6'
9-
- '3.4.3'
10-
- '3.5.0'
3+
- '2.7'
4+
- '3.4'
5+
- '3.5'
6+
- '3.6'
117

128
install:
139
- sudo apt-get update -qq

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Installation
8484

8585
### Dependencies ###
8686

87-
* python 2.7 // python 3.3
87+
* python 2.7 // python 3.6
8888
* [xmlsec](https://pypi.python.org/pypi/xmlsec) Python bindings for the XML Security Library.
8989
* [isodate](https://pypi.python.org/pypi/isodate) An ISO 8601 date/time/
9090
duration parser and formatter

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
'Intended Audience :: System Administrators',
1818
'Operating System :: OS Independent',
1919
'Programming Language :: Python :: 2.7',
20-
'Programming Language :: Python :: 3.3',
20+
'Programming Language :: Python :: 3.4',
21+
'Programming Language :: Python :: 3.5',
22+
'Programming Language :: Python :: 3.6',
2123
],
2224
author='OneLogin',
2325
author_email='support@onelogin.com',

0 commit comments

Comments
 (0)