Skip to content

Commit

Permalink
Merge pull request #23 from danriti/library-maintenance
Browse files Browse the repository at this point in the history
Library maintenance.
  • Loading branch information
danriti committed Jun 12, 2016
2 parents b8f3b17 + cbcd136 commit c35d774
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
Release History
---------------

0.7.0 (2016-06-12)
++++++++++++++++++

- Update requests library to version 2.10.0
- Drop support for Python 3.2

0.6.0 (2016-01-16)
++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Library for providing access to the TraceView API v2.

Please see the `TraceView API Reference <http://dev.appneta.com/docs/api-v2/reference.html>`_ for more information.

Supports Python 2.7, 3.2, 3.3, 3.4, 3.5
Supports Python 2.7, 3.3, 3.4, 3.5

Installation
------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ def find_version(*file_paths):
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],

keywords='traceview api client development performance',
Expand All @@ -80,7 +80,7 @@ def find_version(*file_paths):
],

install_requires=[
'requests == 2.2.1'
'requests == 2.10.0'
],

package_data={'': ['README.rst']},
Expand Down
5 changes: 2 additions & 3 deletions tests/test_traceview.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,9 @@ def test_apps(self):
self.assertIsInstance(apps, list)
self.assertTrue(len(apps) > 0)

@unittest.skipIf(TV_APP_NAME is None, "TV_APP_NAME must define a valid (non-Default) app in order to test the layers API.")
def test_layers(self):
apps = self.tv.apps()
self.assertTrue(len(apps) > 0)
layers = self.tv.layers(apps[0])
layers = self.tv.layers(TV_APP_NAME)
self.assertNotEqual(layers, None)
self.assertIsInstance(layers, list)
self.assertTrue(len(layers) > 0)
Expand Down
2 changes: 1 addition & 1 deletion traceview/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"""

__title__ = 'traceview'
__version__ = '0.6.8'
__version__ = '0.6.9'
__author__ = 'Daniel Riti'
__license__ = 'MIT'

Expand Down

0 comments on commit c35d774

Please sign in to comment.