Skip to content

Commit

Permalink
Release v2.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dormant-user committed May 27, 2024
1 parent 457b407 commit abc0fe0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion jarvis_ui/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

version = "2.4"
version = "2.3.1"

install_script = os.path.join(os.path.dirname(__file__), "lib", "install.sh")

Expand Down
11 changes: 8 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,20 @@ classifiers = [
]
keywords = ["python", "natural-language-processing", "text-to-speech", "speech-recognition", "jarvis",
"hotword-detection", "virtual-assistant", "multiprocessing", "threadpool"]
requires-python = ">=3.8"
requires-python = ">=3.10,<3.12" # Only 3.10 and 3.11 are supported

[tool.setuptools]
packages = ["jarvis_ui", "jarvis_ui.executables", "jarvis_ui.modules"]
script-files = ["jarvis_ui/lib/install.sh"]
script-files = [
"jarvis_ui/lib/install.sh",
"jarvis_ui/lib/squire/detector.sh"
]

[tool.setuptools.dynamic]
version = {attr = "jarvis_ui.version"}
dependencies = {file = ["jarvis_ui/lib/requirements.txt"]}
dependencies = {file = [
"jarvis_ui/lib/requirements.txt"
]}

[build-system]
requires = ["setuptools", "wheel"]
Expand Down
7 changes: 7 additions & 0 deletions release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Release Notes
=============

v2.3.1 (05/26/2024)
-------------------
- Reduces complexity in loading audio driver for Linux
- Upgrades dependencies and improves linting
- Improved stability with installation process
- Removes wheel file dependency for Windows

v2.3 (09/10/2023)
-----------------
- Includes a new feature to use custom ``.env`` files
Expand Down

0 comments on commit abc0fe0

Please sign in to comment.