Skip to content

Commit

Permalink
Staging/main/0.10.7 (#1068)
Browse files Browse the repository at this point in the history
* black formatting (#1067)

* Update version 0.10.7
  • Loading branch information
taylorfturner committed Nov 14, 2023
1 parent 302a458 commit ad2eb80
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Empty file.
4 changes: 3 additions & 1 deletion dataprofiler/tests/plugins/test_plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ def test_plugin():

expected_default_dict = defaultdict(dict)
expected_default_dict["test"]["mock_test"] = test_plugin
self.assertDictEqual(expected_default_dict, mock_plugin_dict)
self.assertDictEqual(
expected_default_dict["test"], mock_plugin_dict["test"]
)

test_get_dict = get_plugins("test")
self.assertDictEqual({"mock_test": test_plugin}, test_get_dict)
Expand Down
2 changes: 1 addition & 1 deletion dataprofiler/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

MAJOR = 0
MINOR = 10
MICRO = 6
MICRO = 7
POST = None # otherwise None

VERSION = "%d.%d.%d" % (MAJOR, MINOR, MICRO)
Expand Down

0 comments on commit ad2eb80

Please sign in to comment.