Unverified Commit 05c54254 authored by Vasilis Vryniotis's avatar Vasilis Vryniotis Committed by GitHub
Browse files

Remove python3.5 typing dependency. (#3288)


Co-authored-by: default avatarFrancisco Massa <fvsmassa@gmail.com>
parent 7dfd8dc8
...@@ -163,12 +163,6 @@ for py_ver in "${DESIRED_PYTHON[@]}"; do ...@@ -163,12 +163,6 @@ for py_ver in "${DESIRED_PYTHON[@]}"; do
rm -rf "$output_folder" rm -rf "$output_folder"
mkdir "$output_folder" mkdir "$output_folder"
if [[ "$py_ver" == 3.5 ]]; then
export CONDA_TYPING_CONSTRAINT="- typing"
else
export CONDA_TYPING_CONSTRAINT=""
fi
export VSTOOLCHAIN_PACKAGE=vs2017 export VSTOOLCHAIN_PACKAGE=vs2017
# We need to build the compiler activation scripts first on Windows # We need to build the compiler activation scripts first on Windows
......
...@@ -143,14 +143,6 @@ setup_macos() { ...@@ -143,14 +143,6 @@ setup_macos() {
fi fi
} }
# set variable to determine whether the typing library needs to be built in
setup_typing() {
if [[ "$PYTHON_VERSION" == 3.5 ]]; then
export CONDA_TYPING_CONSTRAINT="- typing"
else
export CONDA_TYPING_CONSTRAINT=""
fi
}
# Top-level entry point for things every package will need to do # Top-level entry point for things every package will need to do
# #
...@@ -159,7 +151,6 @@ setup_env() { ...@@ -159,7 +151,6 @@ setup_env() {
setup_cuda setup_cuda
setup_build_version "$1" setup_build_version "$1"
setup_macos setup_macos
setup_typing
} }
# Function to retry functions that sometimes timeout or have flaky failures # Function to retry functions that sometimes timeout or have flaky failures
......
...@@ -52,7 +52,6 @@ test: ...@@ -52,7 +52,6 @@ test:
- scipy - scipy
- av =8.0.1 - av =8.0.1
- ca-certificates - ca-certificates
{{ environ.get('CONDA_TYPING_CONSTRAINT') }}
about: about:
......
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