Skip to content

Commit a7db052

Browse files
committed
TinyMS 0.3.1 for the new MindSpore version
1 parent 1ab3723 commit a7db052

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

requirements.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@ easydict>=1.9
33
scipy>=1.5.2,<1.8.0
44
matplotlib>=3.1.3
55
Pillow>=6.2.0
6-
mindspore==1.5.0
6+
mindspore>=1.5.0
77
wheel>=0.32.0
88
setuptools>=40.8.0
99
requests>=2.22.0
1010
flask>=1.1.1
1111
python-Levenshtein>=0.10.2
1212
gensim==3.8.1
1313
PyYAML
14-
opencv-python==4.1.2.30
14+
opencv-python>=4.1.2.30
1515
flask_cors>=3.0.10
1616
pycocotools>=2.0.0 # for st test
17-
wget==3.2
18-
scikit-learn==1.0.1
17+
wget>=3.2
18+
scikit-learn>=1.0.1
19+
tqdm>=4.62.3

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import setuptools
2020

2121
package_name = 'tinyms'
22-
version_tag = '0.3.0'
22+
version_tag = '0.3.1'
2323
pwd = os.path.dirname(os.path.realpath(__file__))
2424

2525

@@ -47,17 +47,17 @@ def _write_version(file):
4747
'scipy>=1.5.2,<1.8.0',
4848
'matplotlib>=3.1.3',
4949
'Pillow>=6.2.0',
50-
'mindspore==1.5.0',
50+
'mindspore>=1.5.0',
5151
'requests>=2.22.0',
5252
'flask>=1.1.1',
5353
'python-Levenshtein>=0.10.2',
5454
'gensim==3.8.1',
5555
'PyYAML',
56-
'opencv-python==4.1.2.30',
56+
'opencv-python>=4.1.2.30',
5757
'flask_cors>=3.0.10',
58-
'wget==3.2',
59-
'scikit-learn==1.0.1',
60-
'tqdm==4.62.3',
58+
'wget>=3.2',
59+
'scikit-learn>=1.0.1',
60+
'tqdm>=4.62.3',
6161
]
6262

6363
test_required_package = [

0 commit comments

Comments
 (0)