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

Commit 9b54403

Browse files
authored
version bump to 3.4.2 (#115)
Updated changeling. Minor version test fix. Allow testing against python 3.7
1 parent 1b1d483 commit 9b54403

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
### 3.4.1 - unreleased
1+
### 3.4.2 - 2018-08-21
2+
3+
* Fix typos in our warning messages https://github.com/quandl/quandl-python/pull/114
4+
5+
### 3.4.1 - 2018-07-25
26

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

quandl/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '3.4.1'
1+
VERSION = '3.4.2'

test/test_connection.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
from test.helpers.httpretty_extension import httpretty
99
import json
1010
from mock import patch, call
11+
from quandl.version import VERSION
1112

1213

1314
class ConnectionTest(unittest2.TestCase):
@@ -67,6 +68,8 @@ def test_build_request(self, mock):
6768
'accept': ('application/json, '
6869
'application/vnd.quandl+json;version=2015-04-09'),
6970
'request-source': 'python',
70-
'request-source-version': '3.4.1'},
71+
'request-source-version': VERSION},
7172
params={'per_page': 10, 'page': 2})
73+
print(mock.call_args)
74+
print(expected)
7275
self.assertEqual(mock.call_args, expected)

0 commit comments

Comments
 (0)