csukuangfj commited on
Commit
9247246
·
1 Parent(s): 72f7bdd

minor fixes

Browse files
cuda/1.10.16/sherpa_onnx-1.10.16-cp310-cp310-linux_x86_64.whl DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:cf278c00b7a8805d1103cbebaf91d7a359d7f54a499d0e4ff5a1934c857fc854
3
- size 183267683
 
 
 
 
cuda/1.10.16/sherpa_onnx-1.10.16-cp311-cp311-linux_x86_64.whl DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:7db36078473076b1384abea78f4aeb4929afa581751e3aa7f3332b46f06e417e
3
- size 183267527
 
 
 
 
cuda/1.10.16/sherpa_onnx-1.10.16-cp312-cp312-linux_x86_64.whl DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:443d5cf6341ef6077df88e437921c82ab69019239dab725d3e7ea5b5ef391ba9
3
- size 183270120
 
 
 
 
cuda/1.10.16/sherpa_onnx-1.10.16-cp37-cp37m-linux_x86_64.whl DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:00b670e462c5b06da62e7882b53f60e2fcf13b8c23b726e7c55b00623fcd3460
3
- size 183293521
 
 
 
 
cuda/1.10.16/sherpa_onnx-1.10.16-cp38-cp38-linux_x86_64.whl DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:c23713481006c52b11dcab5f527b3383be60d85060eaa2133f77117a82032cd1
3
- size 183267700
 
 
 
 
cuda/1.10.16/sherpa_onnx-1.10.16-cp39-cp39-linux_x86_64.whl DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:6dd1b58ad034a26f16e4b70e839f2093dbb0d544160f803b34b0cb29ee7d16f8
3
- size 183267913
 
 
 
 
generate-cuda-wheels.py CHANGED
@@ -21,7 +21,9 @@ class Wheel:
21
  # sherpa_onnx-1.10.16-cp38-cp38-macosx_11_0_x86_64.whl
22
  s = _s.split("/")[-1]
23
  split = s.split("-")
24
- self.major, self.minor, self.patch = list(map(int, split[1].split(".")))
 
 
25
  self.python = int(split[2][2:])
26
  self.os = split[4]
27
 
 
21
  # sherpa_onnx-1.10.16-cp38-cp38-macosx_11_0_x86_64.whl
22
  s = _s.split("/")[-1]
23
  split = s.split("-")
24
+ self.major, self.minor, self.patch = list(
25
+ map(int, split[1].split("+")[0].split("."))
26
+ )
27
  self.python = int(split[2][2:])
28
  self.os = split[4]
29