speechlight 2.0.1__tar.gz → 2.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {speechlight-2.0.1 → speechlight-2.0.2}/PKG-INFO +4 -4
- {speechlight-2.0.1 → speechlight-2.0.2}/README.md +2 -2
- {speechlight-2.0.1 → speechlight-2.0.2}/pyproject.toml +2 -2
- speechlight-2.0.2/src/speechlight/_version.py +1 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/uv.lock +4 -4
- speechlight-2.0.1/src/speechlight/_version.py +0 -1
- {speechlight-2.0.1 → speechlight-2.0.2}/LICENSE.txt +0 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/src/speechlight/__init__.py +0 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/src/speechlight/base.py +0 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/src/speechlight/darwin.py +0 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/src/speechlight/dummy.py +0 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/src/speechlight/py.typed +0 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/src/speechlight/speech_libs/SAAPI32.dll +0 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/src/speechlight/speech_libs/SAAPI64.dll +0 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/src/speechlight/speech_libs/nvdaControllerClient32.dll +0 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/src/speechlight/speech_libs/nvdaControllerClient64.dll +0 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/src/speechlight/windows.py +0 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/tests/__init__.py +0 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/tests/speechlight/__init__.py +0 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/tests/speechlight/test_darwin.py +0 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/tests/speechlight/test_dummy.py +0 -0
- {speechlight-2.0.1 → speechlight-2.0.2}/tests/speechlight/test_windows.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: speechlight
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.2
|
|
4
4
|
Summary: A lightweight Python library providing a common interface to multiple TTS and screen reader APIs.
|
|
5
5
|
Keywords: blind,braille,screen reader,tts,speech,accessibility,jaws,nvda,sapi,system access
|
|
6
6
|
Author-Email: Nick Stockton <nstockton@users.noreply.github.com>
|
|
@@ -35,7 +35,7 @@ Project-URL: homepage, https://github.com/nstockton/speechlight
|
|
|
35
35
|
Project-URL: repository, https://github.com/nstockton/speechlight
|
|
36
36
|
Project-URL: documentation, https://nstockton.github.io/speechlight
|
|
37
37
|
Requires-Python: <4.0,>=3.9
|
|
38
|
-
Requires-Dist: knickknacks<0.
|
|
38
|
+
Requires-Dist: knickknacks<1.0.0,>=0.6.0
|
|
39
39
|
Requires-Dist: pyobjc<11.0,>=10.0; sys_platform == "darwin"
|
|
40
40
|
Requires-Dist: pywin32<400,>=306; sys_platform == "win32"
|
|
41
41
|
Description-Content-Type: text/markdown
|
|
@@ -75,7 +75,7 @@ Execute the following commands from the root directory of this repository to ins
|
|
|
75
75
|
py -3 -m venv .venv
|
|
76
76
|
.venv\Scripts\activate.bat
|
|
77
77
|
pip install --upgrade --require-hashes --requirement requirements-uv.txt
|
|
78
|
-
uv sync
|
|
78
|
+
uv sync --frozen
|
|
79
79
|
pre-commit install -t pre-commit
|
|
80
80
|
pre-commit install -t pre-push
|
|
81
81
|
```
|
|
@@ -87,7 +87,7 @@ Execute the following commands from the root directory of this repository to ins
|
|
|
87
87
|
python3 -m venv .venv
|
|
88
88
|
source .venv/bin/activate
|
|
89
89
|
pip install --upgrade --require-hashes --requirement requirements-uv.txt
|
|
90
|
-
uv sync
|
|
90
|
+
uv sync --frozen
|
|
91
91
|
pre-commit install -t pre-commit
|
|
92
92
|
pre-commit install -t pre-push
|
|
93
93
|
```
|
|
@@ -33,7 +33,7 @@ Execute the following commands from the root directory of this repository to ins
|
|
|
33
33
|
py -3 -m venv .venv
|
|
34
34
|
.venv\Scripts\activate.bat
|
|
35
35
|
pip install --upgrade --require-hashes --requirement requirements-uv.txt
|
|
36
|
-
uv sync
|
|
36
|
+
uv sync --frozen
|
|
37
37
|
pre-commit install -t pre-commit
|
|
38
38
|
pre-commit install -t pre-push
|
|
39
39
|
```
|
|
@@ -45,7 +45,7 @@ Execute the following commands from the root directory of this repository to ins
|
|
|
45
45
|
python3 -m venv .venv
|
|
46
46
|
source .venv/bin/activate
|
|
47
47
|
pip install --upgrade --require-hashes --requirement requirements-uv.txt
|
|
48
|
-
uv sync
|
|
48
|
+
uv sync --frozen
|
|
49
49
|
pre-commit install -t pre-commit
|
|
50
50
|
pre-commit install -t pre-push
|
|
51
51
|
```
|
|
@@ -13,7 +13,7 @@ description = "A lightweight Python library providing a common interface to mult
|
|
|
13
13
|
readme = "README.md"
|
|
14
14
|
requires-python = ">=3.9,<4.0"
|
|
15
15
|
dependencies = [
|
|
16
|
-
"knickknacks>=0.
|
|
16
|
+
"knickknacks>=0.6.0,<1.0.0",
|
|
17
17
|
"pyobjc>=10.0,<11.0; sys_platform == \"darwin\"",
|
|
18
18
|
"pywin32>=306,<400; sys_platform == \"win32\"",
|
|
19
19
|
]
|
|
@@ -58,7 +58,7 @@ classifiers = [
|
|
|
58
58
|
"Topic :: Software Development :: Libraries",
|
|
59
59
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
60
60
|
]
|
|
61
|
-
version = "2.0.
|
|
61
|
+
version = "2.0.2"
|
|
62
62
|
|
|
63
63
|
[project.license]
|
|
64
64
|
text = "MIT"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__: str = "2.0.2"
|
|
@@ -190,15 +190,15 @@ wheels = [
|
|
|
190
190
|
|
|
191
191
|
[[package]]
|
|
192
192
|
name = "knickknacks"
|
|
193
|
-
version = "0.
|
|
193
|
+
version = "0.6.0"
|
|
194
194
|
source = { registry = "https://pypi.org/simple" }
|
|
195
195
|
dependencies = [
|
|
196
196
|
{ name = "backports-strenum", marker = "python_full_version < '3.11'" },
|
|
197
197
|
{ name = "typing-extensions", marker = "python_full_version < '3.12'" },
|
|
198
198
|
]
|
|
199
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
|
199
|
+
sdist = { url = "https://files.pythonhosted.org/packages/f3/8e/a313788475d241e1faa5b4cdc5fb99b261e03d18a1f02828fbce85e8b584/knickknacks-0.6.0.tar.gz", hash = "sha256:6c0e3e41cefb85dac2ade30cb42fe1993bf6941cdc362c4601095c1877388e46", size = 54530 }
|
|
200
200
|
wheels = [
|
|
201
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
201
|
+
{ url = "https://files.pythonhosted.org/packages/4e/3a/b88e63acf99ce02d82ab6ad2aefd0416a2767b1ac3c52257e565c4998987/knickknacks-0.6.0-py3-none-any.whl", hash = "sha256:09e8a55439cb55df7a6c69a2c05cb8da2afc4c391e5611e9c28b04423c559f17", size = 24105 },
|
|
202
202
|
]
|
|
203
203
|
|
|
204
204
|
[[package]]
|
|
@@ -3297,7 +3297,7 @@ test = [
|
|
|
3297
3297
|
|
|
3298
3298
|
[package.metadata]
|
|
3299
3299
|
requires-dist = [
|
|
3300
|
-
{ name = "knickknacks", specifier = ">=0.
|
|
3300
|
+
{ name = "knickknacks", specifier = ">=0.6.0,<1.0.0" },
|
|
3301
3301
|
{ name = "pyobjc", marker = "sys_platform == 'darwin'", specifier = ">=10.0,<11.0" },
|
|
3302
3302
|
{ name = "pywin32", marker = "sys_platform == 'win32'", specifier = ">=306,<400" },
|
|
3303
3303
|
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__: str = "2.0.1"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{speechlight-2.0.1 → speechlight-2.0.2}/src/speechlight/speech_libs/nvdaControllerClient32.dll
RENAMED
|
File without changes
|
{speechlight-2.0.1 → speechlight-2.0.2}/src/speechlight/speech_libs/nvdaControllerClient64.dll
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|