Skip to content

Commit 13a162a

Browse files
committed
Update changelogs, remove commented code.
1 parent ac7f672 commit 13a162a

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* Bugfix - Replace use of numpy aliases of built-in types with built-in type. (#938) PR #939
66
* Bugfix - `ExternalTable.delete` should not remove row on error (#953) PR #956
77
* Bugfix - Fix error handling of remove_object function in `s3.py` (#952) PR #955
8+
* Bugfix - Fix regression issue with DISCINCT clause and GROUP_BY (#914) PR #963
89

910
### 0.13.2 -- May 7, 2021
1011
* Update `setuptools_certificate` dependency to new name `otumat`

docs-parts/intro/Releases_lang1.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* Bugfix - Replace use of numpy aliases of built-in types with built-in type. (#938) PR #939
55
* Bugfix - `ExternalTable.delete` should not remove row on error (#953) PR #956
66
* Bugfix - Fix error handling of remove_object function in `s3.py` (#952) PR #955
7+
* Bugfix - Fix regression issue with DISCINCT clause and GROUP_BY (#914) PR #963
78

89
0.13.2 -- May 7, 2021
910
----------------------

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
__author__ = 'Edgar Walker, Fabian Sinz, Dimitri Yatsenko, Raphael Guzman'
2121

2222
# turn on verbose logging
23-
# logging.basicConfig(level=logging.DEBUG)
23+
logging.basicConfig(level=logging.DEBUG)
2424

2525
__all__ = ['__author__', 'PREFIX', 'CONN_INFO']
2626

tests/test_fetch.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,6 @@ def test_query_caching(self):
290290
os.rmdir(os.path.expanduser('~/dj_query_cache'))
291291

292292
def test_fetch_group_by(self):
293-
# nosetests -vs --tests=tests.test_fetch:TestFetch.test_fetch_group_by --nologcapture
294293
# https://github.com/datajoint/datajoint-python/issues/914
295294

296-
# This command is confirmed to work in v0.12.9 but not in v0.13.2
297-
298295
Parent().fetch('KEY', order_by='name')

0 commit comments

Comments
 (0)