File tree Expand file tree Collapse file tree 5 files changed +20
-1
lines changed Expand file tree Collapse file tree 5 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -48,3 +48,5 @@ Authors in order of the timeline of their contributions:
48
48
- [ dtorres-sf] ( https://github.com/dtorres-sf ) for the fix for diffing using iterable_compare_func with nested objects.
49
49
- [ Enric Pou] ( https://github.com/epou ) for bug fix of ValueError when using Decimal 0.x
50
50
- [ Uwe Fladrich] ( https://github.com/uwefladrich ) for fixing bug when diff'ing non-sequence iterables
51
+ - [ Michal Ozery-Flato] ( https://github.com/michalozeryflato ) for setting equal_nan=ignore_nan_inequality in the call for np.array_equal
52
+ - [ martin-kokos] ( https://github.com/martin-kokos ) for using Pytest's tmp_path fixture instead of /tmp/
Original file line number Diff line number Diff line change 1
1
# DeepDiff Change log
2
2
3
+ - v6-2-3
4
+ - Switching to Orjson for serialization to improve the performance.
5
+ - Setting ` equal_nan=ignore_nan_inequality ` in the call for ` np.array_equal `
6
+ - Using Pytest's tmp_path fixture instead of ` /tmp/ `
3
7
- v6-2-2
4
8
- Enum test fix for python 3.11
5
9
- Adding support for dateutils rrules
Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ Tested on Python 3.7+ and PyPy3.
18
18
19
19
## What is new?
20
20
21
+ Please check the [ ChangeLog] ( CHANGELOG.md ) file for the detailed information.
22
+
21
23
DeepDiff 6-2-0
22
24
23
25
- Major improvement in the diff report for lists when items are all hashable and the order of items is important.
Original file line number Diff line number Diff line change @@ -61,7 +61,11 @@ Authors in order of the timeline of their contributions:
61
61
- `Enric Pou <https://github.com/epou >`__ for bug fix of ValueError
62
62
when using Decimal 0.x
63
63
- `Uwe Fladrich <https://github.com/uwefladrich >`__ for fixing bug when diff'ing non-sequence iterables
64
-
64
+ - `Michal Ozery-Flato <https://github.com/michalozeryflato >`__ for
65
+ setting equal_nan=ignore_nan_inequality in the call for
66
+ np.array_equal
67
+ - `martin-kokos <https://github.com/martin-kokos >`__ for using Pytest’s
68
+ tmp_path fixture instead of /tmp/
65
69
66
70
.. _Sep Dehpour (Seperman) : http://www.zepworks.com
67
71
.. _Victor Hahn Castell : http://hahncastell.de
Original file line number Diff line number Diff line change @@ -5,6 +5,13 @@ Changelog
5
5
6
6
DeepDiff Changelog
7
7
8
+ - v6-2-3
9
+
10
+ - Switching to Orjson for serialization to improve the performance.
11
+ - Setting ``equal_nan=ignore_nan_inequality `` in the call for
12
+ ``np.array_equal ``
13
+ - Using Pytest’s tmp_path fixture instead of ``/tmp/ ``
14
+
8
15
- v6-2-2
9
16
10
17
- Enum test fix for python 3.11
You can’t perform that action at this time.
0 commit comments