-
Notifications
You must be signed in to change notification settings - Fork 720
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #373 from cmusphinx/release_503
Release 5.0.3
- Loading branch information
Showing
14 changed files
with
48 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,5 +12,5 @@ CMakeFiles | |
CTestTestfile.cmake | ||
DartConfiguration.tcl | ||
cmake_install.cmake | ||
|
||
venv/ | ||
.tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1095,8 +1095,8 @@ void ps_get_all_time(ps_decoder_t *ps, double *out_nspeech, | |
/** | ||
* @mainpage PocketSphinx API Documentation | ||
* @author David Huggins-Daines <[email protected]> | ||
* @version 5.0.2 | ||
* @date July 31, 2023 | ||
* @version 5.0.3 | ||
* @date December 28, 2023 | ||
* | ||
* @tableofcontents{HTML:1} | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,9 +14,11 @@ authors = [ | |
{name = "David Huggins-Daines", email = "[email protected]"} | ||
] | ||
keywords = ["asr", "speech"] | ||
dependencies = ["sounddevice"] | ||
classifiers = [ | ||
"Development Status :: 6 - Mature", | ||
"Programming Language :: C", | ||
"Programming Language :: Cython", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
|
@@ -25,6 +27,7 @@ classifiers = [ | |
"Programming Language :: Python :: 3.12", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Topic :: Multimedia :: Sound/Audio :: Speech", | ||
] | ||
|
||
[project.urls] | ||
|
@@ -34,19 +37,25 @@ Repository = "https://github.com/cmusphinx/pocketsphinx.git" | |
Issues = "https://github.com/cmusphinx/pocketsphinx/issues" | ||
|
||
[tool.cibuildwheel] | ||
# Build the versions found in Ubuntu LTS, the stable PyPy, and 3.10 | ||
# everywhere else | ||
# Build a reduced selection of binaries as there are tons of them | ||
build = [ | ||
"pp38*", | ||
"cp36-manylinux_*", | ||
"cp38-manylinux_*", | ||
"pp310*", | ||
"cp38-*", | ||
"cp310-*", | ||
"cp311-*" | ||
"cp311-*", | ||
"cp312-*", | ||
] | ||
# PyPy 3.8 will choke on CPython 3.8 build leftovers... | ||
before-build = "rm -rf _skbuild" | ||
# PyPy builds are broken on Windows, and skip 32-bit and musl | ||
skip = ["*musl*", "*_i686", "*-win32", "pp*win*"] | ||
# Build only universal wheels for Mac where possible, and skip 32-bit | ||
# builds to avoid building a gigabyte of stuff all the time | ||
skip = [ | ||
"cp*-macosx_x86_64", | ||
"cp*-macosx_arm64", | ||
"*_i686", | ||
"*-win32", | ||
] | ||
|
||
[tool.cibuildwheel.macos] | ||
archs = ["x86_64", "universal2", "arm64"] | ||
|
||
[tool.isort] | ||
profile = "black" | ||
|