Skip to content

Commit

Permalink
1.4
Browse files Browse the repository at this point in the history
12. Fix a bug caused by `typing-extensions` and `immutables` when using `python=3.6`.
  • Loading branch information
cainmagi committed Apr 19, 2022
1 parent 7ea3ec2 commit 3205436
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ The following tests has been passed.
9. Fix some bugs caused by missing of `libffi`, `libssl`, and `rustc`+`cargo`.
10. Bump the default base image and the base script location to new versions.
11. Fix the dependency issue of `black`, and `numpy` when using `python=3.6`.
12. Fix a bug caused by typing-extensions when using `python=3.6`.
12. Fix a bug caused by `typing-extensions` and `immutables` when using `python=3.6`.
### ver 1.3 @ 6/19/2021
Expand Down
2 changes: 1 addition & 1 deletion scripts/install-jlab
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ then
if [ "x${CUR_PYTHON_VER}" = "xpy37+" ]
then
msg "Installing Jupyter Lab, ver 3.3.3."
python3 -m pip install typing-extensions==4.1.1 jupyterlab==3.3.3 || fail
python3 -m pip install typing-extensions==4.2.0 jupyterlab==3.3.3 || fail
else
if [ "x${CUR_PYTHON_VER}" = "xpy36" ]
then
Expand Down
6 changes: 3 additions & 3 deletions scripts/install-jlab-conda
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ then
CONDA_TEMP_PKGS="\"immutables>=0.17\" \"typing-extensions>=4.2.0\""
else
if [ "x${CUR_PYTHON_VER}" = "xpy36" ]; then
CONDA_TEMP_PKGS="immutables=0.17 typing-extensions=4.2.0"
CONDA_TEMP_PKGS="immutables=0.15 typing-extensions=4.1.1"
else
CONDA_TEMP_PKGS="\"immutables<0.15\" \"typing-extensions>=3.10.0,<4\""
fi
Expand Down Expand Up @@ -222,7 +222,7 @@ then
CONDA_TEMP_PKGS="\"immutables>=0.17\" \"typing-extensions>=4.2.0\""
else
if [ "x${CUR_PYTHON_VER}" = "xpy36" ]; then
CONDA_TEMP_PKGS="immutables=0.17 typing-extensions=4.2.0"
CONDA_TEMP_PKGS="immutables=0.15 typing-extensions=4.1.1"
else
CONDA_TEMP_PKGS="\"immutables<0.15\" \"typing-extensions>=3.10.0,<4\""
fi
Expand Down Expand Up @@ -300,7 +300,7 @@ then
CONDA_TEMP_PKGS="\"immutables>=0.17\" \"typing-extensions>=4.2.0\""
else
if [ "x${CUR_PYTHON_VER}" = "xpy36" ]; then
CONDA_TEMP_PKGS="immutables=0.17 typing-extensions=4.2.0"
CONDA_TEMP_PKGS="immutables=0.15 typing-extensions=4.1.1"
else
CONDA_TEMP_PKGS="\"immutables<0.15\" \"typing-extensions>=3.10.0,<4\""
fi
Expand Down

0 comments on commit 3205436

Please sign in to comment.