Skip to content

Commit

Permalink
Merge pull request #65 from rhasspy/synesthesiam-20240118-wyoming-1.5.2
Browse files Browse the repository at this point in the history
wyoming 1.5.2
  • Loading branch information
synesthesiam authored Jan 19, 2024
2 parents 5088b59 + 594f6f6 commit 160370b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
include requirements.txt
include VERSION
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
wyoming==1.5.1
wyoming==1.5.2
zeroconf==0.88.0
pyring-buffer==1.0.0
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]:
Expand Down Expand Up @@ -44,6 +44,9 @@ def get_requirements(req_path: Path) -> List[str]:
author="Michael Hansen",
author_email="[email protected]",
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",
Expand Down

0 comments on commit 160370b

Please sign in to comment.