Skip to content

Commit 435e06e

Browse files
authored
Merge pull request #417 from seperman/dev
6.4.1
2 parents 0126007 + f35e05a commit 435e06e

File tree

10 files changed

+23
-17
lines changed

10 files changed

+23
-17
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# DeepDiff Change log
22

3+
- v6-4-1
4+
- Bugfix: Keep Numpy Optional
35
- v6-4-0
46
- [Add Ignore List Order Option to DeepHash](https://github.com/seperman/deepdiff/pull/403) by
57
[Bobby Morck](https://github.com/bmorck)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# DeepDiff v 6.4.0
1+
# DeepDiff v 6.4.1
22

33
![Downloads](https://img.shields.io/pypi/dm/deepdiff.svg?style=flat)
44
![Python Versions](https://img.shields.io/pypi/pyversions/deepdiff.svg?style=flat)
@@ -17,13 +17,13 @@
1717

1818
Tested on Python 3.7+ and PyPy3.
1919

20-
- **[Documentation](https://zepworks.com/deepdiff/6.4.0/)**
20+
- **[Documentation](https://zepworks.com/deepdiff/6.4.1/)**
2121

2222
## What is new?
2323

2424
Please check the [ChangeLog](CHANGELOG.md) file for the detailed information.
2525

26-
DeepDiff 6-4-0
26+
DeepDiff 6-4-1
2727

2828
- [Add Ignore List Order Option to DeepHash](https://github.com/seperman/deepdiff/pull/403) by
2929
[Bobby Morck](https://github.com/bmorck)
@@ -82,11 +82,11 @@ Thank you!
8282

8383
How to cite this library (APA style):
8484

85-
Dehpour, S. (2023). DeepDiff (Version 6.4.0) [Software]. Available from https://github.com/seperman/deepdiff.
85+
Dehpour, S. (2023). DeepDiff (Version 6.4.1) [Software]. Available from https://github.com/seperman/deepdiff.
8686

8787
How to cite this library (Chicago style):
8888

89-
Dehpour, Sep. 2023. DeepDiff (version 6.4.0).
89+
Dehpour, Sep. 2023. DeepDiff (version 6.4.1).
9090

9191
# Authors
9292

deepdiff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""This module offers the DeepDiff, DeepSearch, grep, Delta and DeepHash classes."""
22
# flake8: noqa
3-
__version__ = '6.4.0'
3+
__version__ = '6.4.1'
44
import logging
55

66
if __name__ == '__main__':

deepdiff/helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def get_semvar_as_integer(version):
155155
pypy3 = py3 and hasattr(sys, "pypy_translation_info")
156156

157157

158-
if get_semvar_as_integer(np.__version__) < 1019000:
158+
if np and get_semvar_as_integer(np.__version__) < 1019000:
159159
sys.exit('The minimum required Numpy version is 1.19.0. Please upgrade your Numpy package.')
160160

161161
strings = (str, bytes) # which are both basestring

docs/changelog.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ Changelog
55

66
DeepDiff Changelog
77

8+
- v6-4-1
9+
10+
- Bugfix: Keep Numpy Optional
11+
812
- v6-4-0
913

1014
- `Add Ignore List Order Option to

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@
6161
# built documents.
6262
#
6363
# The short X.Y version.
64-
version = '6.4.0'
64+
version = '6.4.1'
6565
# The full version, including alpha/beta/rc tags.
66-
release = '6.4.0'
66+
release = '6.4.1'
6767

6868
load_dotenv(override=True)
6969
DOC_VERSION = os.environ.get('DOC_VERSION', version)

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
contain the root `toctree` directive.
55
66
7-
DeepDiff 6.4.0 documentation!
7+
DeepDiff 6.4.1 documentation!
88
=============================
99

1010
*******

requirements-dev.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
-r requirements.txt
22
-r requirements-cli.txt
33
bump2version==1.0.1
4-
jsonpickle==3.0.0
4+
jsonpickle==3.0.2
55
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.24.4
8+
pytest==7.4.0
9+
pytest-cov==4.1.0
1010
python-dotenv==0.21.0
1111
watchdog==2.2.0
1212
Sphinx==5.3.0

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 6.4.0
2+
current_version = 6.4.1
33
commit = True
44
tag = True
55
tag_name = {new_version}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
if os.environ.get('USER', '') == 'vagrant':
1111
del os.link
1212

13-
version = '6.4.0'
13+
version = '6.4.1'
1414

1515

1616
def get_reqs(filename):

0 commit comments

Comments
 (0)