Skip to content

Commit c1f3d23

Browse files
chensuyuezehao-intel
authored andcommitted
update installation dependency (#185)
Signed-off-by: zehao-intel <[email protected]>
1 parent e955ec1 commit c1f3d23

File tree

9 files changed

+8
-11
lines changed

9 files changed

+8
-11
lines changed

.azure-pipelines/code-scan.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ pr:
99
paths:
1010
include:
1111
- neural_compressor
12+
- setup.py
1213

1314
pool: ICX-16C
1415

.azure-pipelines/model-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ pr:
99
paths:
1010
include:
1111
- neural_compressor
12+
- setup.py
1213
exclude:
1314
- neural_compressor/ux
1415

.azure-pipelines/ut-basic.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ pr:
1010
include:
1111
- neural_compressor
1212
- test
13+
- setup.py
1314
exclude:
1415
- neural_compressor/ux
1516
- test/ux

.azure-pipelines/ut-ncoder.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ pr:
1010
include:
1111
- neural_coder
1212
- test/neural_coder
13+
- setup.py
1314

1415
pool: ICX-16C
1516

.azure-pipelines/ut-ux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ pr:
1010
include:
1111
- neural_compressor/ux
1212
- test/ux
13+
- setup.py
1314

1415
pool: ICX-16C
1516

conda_meta/basic/meta.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,13 @@ requirements:
2121
- scikit-learn
2222
- schema
2323
- py-cpuinfo
24-
- hyperopt
2524
- pandas
2625
- pycocotools
2726
- opencv
2827
- psutil
2928
- Pillow
3029
- requests
31-
- sigopt
3230
- prettytable
33-
- cryptography
34-
- cython
3531
- packaging
3632
test:
3733
imports:

conda_meta/full/meta.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ requirements:
2323
- scikit-learn
2424
- schema
2525
- py-cpuinfo
26-
- hyperopt
2726
- pandas
2827
- pycocotools
2928
- opencv
@@ -35,12 +34,10 @@ requirements:
3534
- psutil
3635
- Pillow
3736
- requests
38-
- sigopt
3937
- prettytable
4038
- cryptography
4139
- sqlalchemy==1.4.27
4240
- alembic==1.7.7
43-
- cython
4441
- pywin32 # [win]
4542
- packaging
4643
test:

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
Cython
21
numpy
32
pandas
43
pyyaml

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
# define install requirements
3838
install_requires_list = [
3939
'numpy', 'pyyaml', 'scikit-learn', 'schema', 'py-cpuinfo', 'pandas', 'pycocotools',
40-
'opencv-python', 'requests', 'psutil', 'Pillow', 'prettytable', 'cryptography', 'Cython',
41-
'deprecated']
40+
'opencv-python', 'requests', 'psutil', 'Pillow', 'prettytable', 'deprecated']
4241
ux_install_requires_list = [
43-
'Flask-Cors', 'Flask-SocketIO', 'Flask', 'gevent-websocket', 'gevent','sqlalchemy==1.4.27', 'alembic==1.7.7']
42+
'Flask-Cors', 'Flask-SocketIO', 'Flask', 'gevent-websocket', 'gevent','sqlalchemy==1.4.27',
43+
'alembic==1.7.7', 'cryptography']
4444

4545
# define scripts
4646
scripts_list = []

0 commit comments

Comments
 (0)