Skip to content

Commit aed6a8c

Browse files
authored
* #235 * #235 - Correct sz-sdk-python requirements
1 parent 252b182 commit aed6a8c

5 files changed

Lines changed: 11 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning].
77

88
## [Unreleased]
99

10+
## [0.3.9] - 2025-04-30
11+
12+
### Changed in 0.3.9
13+
14+
- Changed default flag for why_search() to SZ_WHY_SEARCH_DEFAULT_FLAGS
15+
1016
## [0.3.8] - 2025-04-21
1117

1218
### Changed in 0.3.8

examples/szengine/why_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
attributes = json.dumps({"NAME_FULL": "BOB SMITH", "EMAIL_ADDRESS": "bsmith@work.com"})
88
entity_id = 1
9-
flags = SzEngineFlags.SZ_SEARCH_BY_ATTRIBUTES_DEFAULT_FLAGS
9+
flags = SzEngineFlags.SZ_WHY_SEARCH_DEFAULT_FLAGS
1010
instance_name = "Example"
1111
settings = {
1212
"PIPELINE": {

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
orjson==3.10.18
2-
senzing==0.2.6
2+
senzing==0.2.10

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = senzing_core
3-
version = 0.3.8
3+
version = 0.3.9
44
author = senzing
55
author_email = support@senzing.com
66
description = Senzing Python SDK
@@ -21,7 +21,7 @@ package_dir =
2121
packages = find:
2222
python_requires = >=3.9
2323
install_requires =
24-
senzing >= 0.2.6,<1.0.0
24+
senzing >= 0.2.10,<1.0.0
2525

2626
[options.packages.find]
2727
where = src

src/senzing_core/szengine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1077,7 +1077,7 @@ def why_search(
10771077
self,
10781078
attributes: str,
10791079
entity_id: int,
1080-
flags: int = SzEngineFlags.SZ_ENTITY_DEFAULT_FLAGS,
1080+
flags: int = SzEngineFlags.SZ_WHY_SEARCH_DEFAULT_FLAGS,
10811081
search_profile: str = "",
10821082
) -> str:
10831083
result = self.library_handle.Sz_whySearch_V2_helper(

0 commit comments

Comments
 (0)