Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
xuning
/
sherpaonnx
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Fangjun Kuang
2023-08-14 22:22:46 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2023-08-14 22:22:46 +0800
Commit
496c5dd7f56527f0321880d236f70677bbceddcd
496c5dd7
1 parent
313debe4
Fix pip install on Windows for Python 3.11 (#271)
隐藏空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
4 行增加
和
2 行删除
.github/workflows/macos.yaml
CMakeLists.txt
setup.py
.github/workflows/macos.yaml
查看文件 @
496c5dd
...
...
@@ -145,6 +145,7 @@ jobs:
cp -a build/install/lib $dst/
cp -a build/install/include $dst/
brew install tree
tree $dst
tar cjvf ${dst}.tar.bz2 $dst
...
...
CMakeLists.txt
查看文件 @
496c5dd
cmake_minimum_required
(
VERSION 3.13 FATAL_ERROR
)
project
(
sherpa-onnx
)
set
(
SHERPA_ONNX_VERSION
"1.7.
5
"
)
set
(
SHERPA_ONNX_VERSION
"1.7.
6
"
)
# Disable warning about
#
...
...
setup.py
查看文件 @
496c5dd
...
...
@@ -37,7 +37,8 @@ with open("sherpa-onnx/python/sherpa_onnx/__init__.py", "a") as f:
install_requires
=
[
"numpy"
,
"sentencepiece==0.1.96"
,
"sentencepiece==0.1.96; python_version < '3.11'"
,
"sentencepiece; python_version >= '3.11'"
,
]
...
...
请
注册
或
登录
后发表评论