Skip to content

Commit

Permalink
#134 Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj committed Dec 3, 2024
1 parent 084d805 commit 9dc4053
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/isort.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ jobs:
uses: isort/isort-action@v1
with:
requirements-files: requirements.txt
sort-paths: "examples src/senzing tests"
sort-paths: "examples src/senzing_core tests"
18 changes: 12 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,30 @@ and this project adheres to [Semantic Versioning].

## [Unreleased]

## [0.3.0] - 2024-12-03

### Changed in 0.3.0

- Renamed repository from sz-sdk-python to sz-sdk-python-core

## [0.2.2] - 2024-11-28

### Changed in 0.2.2.
### Changed in 0.2.2

- Aligned create engine method calls to new abstract
- Improvements to helper functions
- Improvements to helper functions

## [0.2.1] - 2024-11-22

### Added in 0.2.1.
### Added in 0.2.1

- Improvements to helpers
- Improvements to helpers

## [0.2.0] - 2024-11-04

### Deleted in 0.2.0.
### Deleted in 0.2.0

- Deleted abstract, dict and truthset packages from core SDK
- Deleted abstract, dict and truthset packages from core SDK

## [0.1.0] - 2024-10-27

Expand Down
4 changes: 2 additions & 2 deletions makefiles/darwin.mk
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ setup-osarch-specific:
.PHONY: test-osarch-specific
test-osarch-specific:
$(info --- Unit tests -------------------------------------------------------)
@pytest tests/ --verbose --capture=no --cov=src/senzing
@pytest tests/ --verbose --capture=no --cov=src/senzing_core
$(info --- Test examples ----------------------------------------------------)
@pytest examples/ --verbose --capture=no --cov=src/senzing
@pytest examples/ --verbose --capture=no --cov=src/senzing_core


.PHONY: venv-osarch-specific
Expand Down
2 changes: 1 addition & 1 deletion makefiles/linux.mk
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ setup-osarch-specific:
.PHONY: test-osarch-specific
test-osarch-specific:
$(info --- Unit tests -------------------------------------------------------)
@$(activate-venv); pytest tests/ --verbose --capture=no --cov=src/senzing --cov-report xml:coverage.xml
@$(activate-venv); pytest tests/ --verbose --capture=no --cov=src/senzing_core --cov-report xml:coverage.xml
$(info --- Test examples using unittest -------------------------------------)
@$(activate-venv); python3 -m unittest \
examples/szconfig/*.py \
Expand Down
4 changes: 2 additions & 2 deletions makefiles/windows.mk
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ setup-osarch-specific:
.PHONY: test-osarch-specific
test-osarch-specific:
$(info --- Unit tests -------------------------------------------------------)
@pytest tests/ --verbose --capture=no --cov=src/senzing
@pytest tests/ --verbose --capture=no --cov=src/senzing_core
$(info --- Test examples ----------------------------------------------------)
@pytest examples/ --verbose --capture=no --cov=src/senzing
@pytest examples/ --verbose --capture=no --cov=src/senzing_core


.PHONY: venv-osarch-specific
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = senzing_core
version = 0.2.2
version = 0.3.0
author = senzing
author_email = [email protected]
description = Python SDK for Senzing API
Expand Down

0 comments on commit 9dc4053

Please sign in to comment.