File tree 5 files changed +13
-7
lines changed 5 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 1
1
# DeepDiff Change log
2
2
3
+ - v6-4-1
4
+ - Bugfix: Keep Numpy Optional
3
5
- v6-4-0
4
6
- [ Add Ignore List Order Option to DeepHash] ( https://github.com/seperman/deepdiff/pull/403 ) by
5
7
[ Bobby Morck] ( https://github.com/bmorck )
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ Tested on Python 3.7+ and PyPy3.
23
23
24
24
Please check the [ ChangeLog] ( CHANGELOG.md ) file for the detailed information.
25
25
26
- DeepDiff 6-4-0
26
+ DeepDiff 6-4-1
27
27
28
28
- [ Add Ignore List Order Option to DeepHash] ( https://github.com/seperman/deepdiff/pull/403 ) by
29
29
[ Bobby Morck] ( https://github.com/bmorck )
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ def get_semvar_as_integer(version):
155
155
pypy3 = py3 and hasattr (sys , "pypy_translation_info" )
156
156
157
157
158
- if get_semvar_as_integer (np .__version__ ) < 1019000 :
158
+ if np and get_semvar_as_integer (np .__version__ ) < 1019000 :
159
159
sys .exit ('The minimum required Numpy version is 1.19.0. Please upgrade your Numpy package.' )
160
160
161
161
strings = (str , bytes ) # which are both basestring
Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ Changelog
5
5
6
6
DeepDiff Changelog
7
7
8
+ - v6-4-1
9
+
10
+ - Bugfix: Keep Numpy Optional
11
+
8
12
- v6-4-0
9
13
10
14
- `Add Ignore List Order Option to
Original file line number Diff line number Diff line change 1
1
-r requirements.txt
2
2
-r requirements-cli.txt
3
3
bump2version == 1.0.1
4
- jsonpickle == 3.0.0
4
+ jsonpickle == 3.0.2
5
5
coverage == 6.5.0
6
- ipdb == 0.13.9
7
- numpy == 1.23.5
8
- pytest == 7.2 .0
9
- pytest-cov == 4.0 .0
6
+ ipdb == 0.13.13
7
+ numpy == 1.25.2
8
+ pytest == 7.4 .0
9
+ pytest-cov == 4.1 .0
10
10
python-dotenv == 0.21.0
11
11
watchdog == 2.2.0
12
12
Sphinx == 5.3.0
You can’t perform that action at this time.
0 commit comments