From 108f9f54f4a5c79dc7b0f42a40dae7b0fe15c02b Mon Sep 17 00:00:00 2001 From: chris-hoefgen Date: Thu, 6 Jul 2023 12:14:11 -0700 Subject: [PATCH 1/3] explicitly add the WASM file to the package release --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 02ee1b5..d80d7b7 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ keywords=["DevCycle"], install_requires=REQUIRES, packages=find_packages(), - package_data={"": ["VERSION.txt"], "devcycle_python_sdk": ["py.typed"]}, + package_data={"": ["VERSION.txt"], "devcycle_python_sdk": ["py.typed", "bucketing-lib.release.wasm"]}, include_package_data=True, long_description="""\ The DevCycle Python SDK used for feature management. From b64c3efe4702927aae73ecf776de552aab440ebc Mon Sep 17 00:00:00 2001 From: chris-hoefgen Date: Thu, 6 Jul 2023 12:14:19 -0700 Subject: [PATCH 2/3] bump version to 3.0.1 --- devcycle_python_sdk/VERSION.txt | 2 +- test/util/test_version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/devcycle_python_sdk/VERSION.txt b/devcycle_python_sdk/VERSION.txt index 56fea8a..13d683c 100644 --- a/devcycle_python_sdk/VERSION.txt +++ b/devcycle_python_sdk/VERSION.txt @@ -1 +1 @@ -3.0.0 \ No newline at end of file +3.0.1 \ No newline at end of file diff --git a/test/util/test_version.py b/test/util/test_version.py index 503fb87..2deb89e 100644 --- a/test/util/test_version.py +++ b/test/util/test_version.py @@ -9,7 +9,7 @@ class VersionTest(unittest.TestCase): def test_sdk_version(self): - expected_version = "3.0.0" + expected_version = "3.0.1" version = sdk_version() self.assertEqual(version, expected_version) From 4d10f46cf678bbee88936866c54d802d8e7926a2 Mon Sep 17 00:00:00 2001 From: chris-hoefgen Date: Thu, 6 Jul 2023 12:18:14 -0700 Subject: [PATCH 3/3] formatter --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d80d7b7..b7cf8e9 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,10 @@ keywords=["DevCycle"], install_requires=REQUIRES, packages=find_packages(), - package_data={"": ["VERSION.txt"], "devcycle_python_sdk": ["py.typed", "bucketing-lib.release.wasm"]}, + package_data={ + "": ["VERSION.txt"], + "devcycle_python_sdk": ["py.typed", "bucketing-lib.release.wasm"], + }, include_package_data=True, long_description="""\ The DevCycle Python SDK used for feature management.