Unverified Commit ec7f502c authored by Yuting Jiang's avatar Yuting Jiang Committed by GitHub
Browse files

CI/CD - Upgrade networkx version to fix installation compatibility issue (#478)

**Description**
Upgrade networkx version to fix installation compatibility issue.
parent f041b6ea
...@@ -11,6 +11,8 @@ strategy: ...@@ -11,6 +11,8 @@ strategy:
imageTag: '3.6' imageTag: '3.6'
python-3.7: python-3.7:
imageTag: '3.7' imageTag: '3.7'
python-3.8:
imageTag: '3.8'
# TODO # TODO
#python-latest: #python-latest:
# imageTag: '3' # imageTag: '3'
...@@ -27,6 +29,7 @@ steps: ...@@ -27,6 +29,7 @@ steps:
echo "##vso[task.prependpath]$HOME/.local/bin" echo "##vso[task.prependpath]$HOME/.local/bin"
displayName: Export path displayName: Export path
- script: | - script: |
python3 -m pip install --upgrade pip
python3 -m pip install .[test,cpuworker] python3 -m pip install .[test,cpuworker]
make postinstall make postinstall
displayName: Install dependencies displayName: Install dependencies
......
...@@ -18,6 +18,7 @@ steps: ...@@ -18,6 +18,7 @@ steps:
echo "##vso[task.prependpath]$HOME/.local/bin" echo "##vso[task.prependpath]$HOME/.local/bin"
displayName: Export path displayName: Export path
- script: | - script: |
python3 -m pip install --upgrade pip
python3 -m pip install .[test,nvworker] python3 -m pip install .[test,nvworker]
make postinstall make postinstall
displayName: Install dependencies displayName: Install dependencies
......
...@@ -159,11 +159,11 @@ def run(self): ...@@ -159,11 +159,11 @@ def run(self):
'markdown>=3.3.0', 'markdown>=3.3.0',
'matplotlib>=3.0.0', 'matplotlib>=3.0.0',
'natsort>=7.1.1', 'natsort>=7.1.1',
'networkx>=1.11', 'networkx>=2.5',
'numpy>=1.19.2', 'numpy>=1.19.2',
'omegaconf==2.0.6', 'omegaconf==2.0.6',
'openpyxl>=3.0.7', 'openpyxl>=3.0.7',
'pandas==1.1.5', 'pandas>=1.1.5',
'pssh @ git+https://github.com/lilydjwg/pssh.git@v2.3.4', 'pssh @ git+https://github.com/lilydjwg/pssh.git@v2.3.4',
'pyyaml>=5.3', 'pyyaml>=5.3',
'requests>=2.27.1', 'requests>=2.27.1',
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment