Skip to content
This repository has been archived by the owner on Apr 30, 2022. It is now read-only.

Commit

Permalink
version bump to 3.4.2 (#115)
Browse files Browse the repository at this point in the history
Updated changeling.

Minor version test fix.

Allow testing against python 3.7
  • Loading branch information
mbasset authored Aug 21, 2018
1 parent 1b1d483 commit 9b54403
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
### 3.4.1 - unreleased
### 3.4.2 - 2018-08-21

* Fix typos in our warning messages https://github.com/quandl/quandl-python/pull/114

### 3.4.1 - 2018-07-25

* Include all documentation and test file in source distribution (sdist) tarballs

Expand Down
2 changes: 1 addition & 1 deletion quandl/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '3.4.1'
VERSION = '3.4.2'
5 changes: 4 additions & 1 deletion test/test_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from test.helpers.httpretty_extension import httpretty
import json
from mock import patch, call
from quandl.version import VERSION


class ConnectionTest(unittest2.TestCase):
Expand Down Expand Up @@ -67,6 +68,8 @@ def test_build_request(self, mock):
'accept': ('application/json, '
'application/vnd.quandl+json;version=2015-04-09'),
'request-source': 'python',
'request-source-version': '3.4.1'},
'request-source-version': VERSION},
params={'per_page': 10, 'page': 2})
print(mock.call_args)
print(expected)

This comment has been minimized.

Copy link
@sebix

sebix Aug 26, 2018

Contributor

Is this line and the line above your intention?

self.assertEqual(mock.call_args, expected)

0 comments on commit 9b54403

Please sign in to comment.