File tree 6 files changed +5
-8
lines changed
verbatim-sources/job-specs
6 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -1579,7 +1579,7 @@ jobs:
1579
1579
$* || (sleep 1 && $*) || (sleep 2 && $*) || (sleep 4 && $*) || (sleep 8 && $*)
1580
1580
}
1581
1581
1582
- retry conda install numpy ninja pyyaml mkl mkl-include setuptools cmake cffi typing requests --yes
1582
+ retry conda install numpy ninja pyyaml mkl mkl-include setuptools cmake cffi requests --yes
1583
1583
1584
1584
# sync submodules
1585
1585
cd ${PROJ_ROOT}
Original file line number Diff line number Diff line change @@ -72,14 +72,13 @@ if [ -n "$ANACONDA_PYTHON_VERSION" ]; then
72
72
# DO NOT install cmake here as it would install a version newer than 3.5, but
73
73
# we want to pin to version 3.5.
74
74
if [ " $ANACONDA_PYTHON_VERSION " = " 3.8" ]; then
75
- # DO NOT install typing if installing python-3.8, since its part of python-3.8 core packages
76
75
# Install llvm-8 as it is required to compile llvmlite-0.30.0 from source
77
76
conda_install numpy=1.18.5 pyyaml mkl mkl-include setuptools cffi future six llvmdev=8.0.0
78
77
elif [ " $ANACONDA_PYTHON_VERSION " = " 3.7" ]; then
79
78
# DO NOT install dataclasses if installing python-3.7, since its part of python-3.7 core packages
80
- conda_install numpy=1.18.5 pyyaml mkl mkl-include setuptools cffi typing future six
79
+ conda_install numpy=1.18.5 pyyaml mkl mkl-include setuptools cffi future six
81
80
else
82
- conda_install numpy=1.18.5 pyyaml mkl mkl-include setuptools cffi typing future six dataclasses
81
+ conda_install numpy=1.18.5 pyyaml mkl mkl-include setuptools cffi future six dataclasses
83
82
fi
84
83
if [[ " $CUDA_VERSION " == 9.2* ]]; then
85
84
conda_install magma-cuda92 -c pytorch
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ export PATH="~/anaconda/bin:${PATH}"
15
15
source ~ /anaconda/bin/activate
16
16
17
17
# Install dependencies
18
- conda install numpy ninja pyyaml mkl mkl-include setuptools cmake cffi typing requests --yes
18
+ conda install numpy ninja pyyaml mkl mkl-include setuptools cmake cffi requests --yes
19
19
conda install -c conda-forge valgrind --yes
20
20
export CMAKE_PREFIX_PATH=${CONDA_PREFIX:- " $( dirname $( which conda) ) /../" }
21
21
Original file line number Diff line number Diff line change 425
425
$* || (sleep 1 && $*) || (sleep 2 && $*) || (sleep 4 && $*) || (sleep 8 && $*)
426
426
}
427
427
428
- retry conda install numpy ninja pyyaml mkl mkl-include setuptools cmake cffi typing requests --yes
428
+ retry conda install numpy ninja pyyaml mkl mkl-include setuptools cmake cffi requests --yes
429
429
430
430
# sync submodules
431
431
cd ${PROJ_ROOT}
Original file line number Diff line number Diff line change 2
2
enum34
3
3
pyyaml
4
4
requests
5
- typing
Original file line number Diff line number Diff line change @@ -308,7 +308,6 @@ def check_file(f):
308
308
'benchmark' , 'CMakeLists.txt' ))
309
309
310
310
check_pydep ('yaml' , 'pyyaml' )
311
- check_pydep ('typing' , 'typing' )
312
311
313
312
build_caffe2 (version = version ,
314
313
cmake_python_library = cmake_python_library ,
You can’t perform that action at this time.
0 commit comments