From bd9de77a4cb74079e46e8a18c888654fb3918adf Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Thu, 18 Jan 2024 14:46:27 -0600 Subject: [PATCH 1/2] wyoming 1.5.2 --- CHANGELOG.md | 4 ++++ MANIFEST.in | 1 + setup.py | 9 ++++++--- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cf9af5..eb974cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.1.1 + +- Bump to wyoming 1.5.2 (package fix) + ## 1.1.0 - Bump to wyoming 1.5.1 diff --git a/MANIFEST.in b/MANIFEST.in index f9bd145..fd959fa 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ include requirements.txt +include VERSION diff --git a/setup.py b/setup.py index 4aab204..d8422f3 100644 --- a/setup.py +++ b/setup.py @@ -6,9 +6,9 @@ from setuptools import setup this_dir = Path(__file__).parent -version = ( - (this_dir / "wyoming_satellite" / "VERSION").read_text(encoding="utf-8").strip() -) +module_dir = this_dir / "wyoming_satellite" +version_path = module_dir / "VERSION" +version = version_path.read_text(encoding="utf-8").strip() def get_requirements(req_path: Path) -> List[str]: @@ -44,6 +44,9 @@ def get_requirements(req_path: Path) -> List[str]: author="Michael Hansen", author_email="mike@rhasspy.org", packages=setuptools.find_packages(), + package_data={ + "wyoming_satellite": [str(p.relative_to(module_dir)) for p in (version_path,)] + }, install_requires=install_requires, classifiers=[ "Development Status :: 3 - Alpha", From 594f6f696d22f33bc2d7c66270c96d96b55eefb9 Mon Sep 17 00:00:00 2001 From: Michael Hansen Date: Thu, 18 Jan 2024 14:46:57 -0600 Subject: [PATCH 2/2] Fix requirements --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index c65b1e9..66d5da8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -wyoming==1.5.1 +wyoming==1.5.2 zeroconf==0.88.0 pyring-buffer==1.0.0