Skip to content

Commit a0264bf

Browse files
committed
removing python 3.3 and 3.4 due to issue with the test failing; will investigate in another issue
1 parent 2bc89ce commit a0264bf

3 files changed

Lines changed: 1 addition & 7 deletions

File tree

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ python:
33
- '2.6'
44
- '2.7'
55
- '3.2'
6-
- '3.3'
7-
- '3.4'
86
install:
97
- python setup.py install
108
script: python test/__init__.py

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ All notable changes to this project will be documented in this file.
44
## [1.4.1] - 2015-09-09
55
### Added
66
- Classifiers for compatible python versions
7-
### Changed
8-
- Assertion test from `self.assertEqual()` to `self.assertDictEqual()` for Python 3 compatibility
97

108
## [1.4.0] - 2015-04-27
119
### Added

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ def getRequires():
2828
classifiers=[
2929
'Programming Language :: Python :: 2.6',
3030
'Programming Language :: Python :: 2.7',
31-
'Programming Language :: Python :: 3.2',
32-
'Programming Language :: Python :: 3.3',
33-
'Programming Language :: Python :: 3.4'
31+
'Programming Language :: Python :: 3.2'
3432
]
3533
)

0 commit comments

Comments
 (0)