Skip to content

Commit a9dee8d

Browse files
committed
update changelog, fix logger, pin networkx version.
1 parent 8596c44 commit a9dee8d

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Release notes
22

3+
### 0.13.7 -- TBD
4+
* Bugfix - Fix networkx incompatable change by version pinning to 2.8.3 PR #1036
5+
* Add - Support for serializing numpy datetime64 types PR #1036
6+
* Update - Add traceback to default logging PR #1036
7+
38
### 0.13.6 -- Jun 13, 2022
49
* Add - Config option to set threshold for when to stop using checksums for filepath stores. PR #1025
510
* Add - Unified package level logger for package (#667) PR #1031

datajoint/logging.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,7 @@ def excepthook(exc_type, exc_value, exc_traceback):
2121
sys.__excepthook__(exc_type, exc_value, exc_traceback)
2222
return
2323

24-
if logger.getEffectiveLevel() == 10:
25-
logger.debug(
26-
"Uncaught exception", exc_info=(exc_type, exc_value, exc_traceback)
27-
)
28-
else:
29-
logger.error(f"Uncaught exception: {exc_value}")
24+
logger.error("Uncaught exception", exc_info=(exc_type, exc_value, exc_traceback))
3025

3126

3227
sys.excepthook = excepthook

docs-parts/intro/Releases_lang1.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
0.13.7 -- TBD
2+
--------------
3+
* Bugfix - Fix networkx incompatable change by version pinning to 2.8.3 PR #1036
4+
* Add - Support for serializing numpy datetime64 types PR #1036
5+
* Update - Add traceback to default logging PR #1036
6+
17
0.13.6 -- Jun 13, 2022
28
----------------------
39
* Add - Config option to set threshold for when to stop using checksums for filepath stores. PR #1025

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pyparsing
44
ipython
55
pandas
66
tqdm
7-
networkx
7+
networkx<2.8.3
88
pydot
99
minio>=7.0.0
1010
matplotlib

0 commit comments

Comments
 (0)