[+] add .whl release

1. fix mypy paths for mypy.ini;
This commit is contained in:
Siarhei Siniak 2025-05-15 13:34:55 +03:00
parent a103f06be8
commit 98f2c4b965
5 changed files with 28 additions and 24 deletions

@ -1,18 +0,0 @@
[mypy]
mypy_path =
mypy-stubs,
deps/com.github.aiortc.aiortc/src,
mypy-stubs/marisa-trie-types,
mypy-stubs/types-debugpy,
python
exclude =
python/tmp,
python/build
plugins =
numpy.typing.mypy_plugin,
pydantic.mypy
explicit_package_bases = true
namespace_packages = true

18
python/.mypy.ini Normal file

@ -0,0 +1,18 @@
[mypy]
mypy_path =
../mypy-stubs,
../deps/com.github.aiortc.aiortc/src,
../mypy-stubs/marisa-trie-types,
../mypy-stubs/types-debugpy,
.
exclude =
tmp,
build
plugins =
numpy.typing.mypy_plugin,
pydantic.mypy
explicit_package_bases = true
namespace_packages = true

@ -81,16 +81,17 @@ class CLI(_cli.CLI):
project.source_dir / '_m.py', project.source_dir / '_m.py',
project.source_dir / 'online', project.source_dir / 'online',
project.source_dir / 'cli.py', project.source_dir / 'cli.py',
self.settings.base_dir / 'm.py', project.source_dir / 'm.py',
# Settings.settings().project_root / 'deps/com.github.aiortc.aiortc/src', # Settings.settings().project_root / 'deps/com.github.aiortc.aiortc/src',
#Settings.settings().project_root / 'm.py', #Settings.settings().project_root / 'm.py',
], ],
max_errors={ max_errors={
'python/online/fxreader/pr34/commands_typed': 0, 'online/fxreader/pr34/commands_typed': 0,
'python/cli.py': 0, # 'online/fxreader/pr34/commands': 0,
'cli.py': 0,
'm.py': 0, 'm.py': 0,
'deps/com.github.aiortc.aiortc/src/online_fxreader': 0, '../deps/com.github.aiortc.aiortc/src/online_fxreader': 0,
'deps/com.github.aiortc.aiortc/src/aiortc/contrib/signaling': 0 '../deps/com.github.aiortc.aiortc/src/aiortc/contrib/signaling': 0
} }
), ),
) )

@ -5,7 +5,7 @@ project(
).stdout().strip('\n'), ).stdout().strip('\n'),
# 'online.fxreader.uv', # 'online.fxreader.uv',
# ['c', 'cpp'], # ['c', 'cpp'],
version: '0.1.5.16+27.13', version: '0.1.5.16+27.14',
# default_options: [ # default_options: [
# 'cpp_std=c++23', # 'cpp_std=c++23',
# # 'prefer_static=true', # # 'prefer_static=true',

Binary file not shown.