This commit is contained in:
Yuting Jiang 2022-10-18 09:58:29 +08:00
Родитель 4ecf2fc446
Коммит 1ded8241d2
5 изменённых файлов: 5 добавлений и 9 удалений

Просмотреть файл

@ -18,8 +18,7 @@ steps:
echo "##vso[task.prependpath]$HOME/.local/bin"
displayName: Export path
- script: |
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade .[test,nvworker]
python3 -m pip install .[test,nvworker]
make postinstall
displayName: Install dependencies
- script: |

Просмотреть файл

@ -130,7 +130,6 @@ ADD third_party third_party
RUN make -C third_party cuda
ADD . .
RUN python3 -m pip install --upgrade pip && \
python3 -m pip install -U .[nvworker] && \
RUN python3 -m pip install .[nvworker] && \
make cppbuild && \
make postinstall

Просмотреть файл

@ -126,7 +126,6 @@ ADD third_party third_party
RUN make -C third_party rocm
ADD . .
RUN python3 -m pip install --upgrade pip && \
python3 -m pip install -U .[amdworker] && \
RUN python3 -m pip install .[amdworker] && \
make cppbuild && \
make postinstall

Просмотреть файл

@ -141,7 +141,6 @@ ADD third_party third_party
RUN make ROCBLAS_BRANCH=release/rocm-rel-5.1 -C third_party rocm
ADD . .
RUN python3 -m pip install --upgrade pip && \
python3 -m pip install -U .[amdworker] && \
RUN python3 -m pip install .[amdworker] && \
make cppbuild && \
make postinstall

Просмотреть файл

@ -154,7 +154,7 @@ setup(
'numpy>=1.19.2',
'omegaconf==2.0.6',
'openpyxl>=3.0.7',
'pandas>=1.1.5',
'pandas==1.1.5',
'pssh @ git+https://github.com/lilydjwg/pssh.git@v2.3.4',
'pyyaml>=5.3',
'requests>=2.27.1',