8000 MAINT Removes remaining references to python 3.6 (#21110) · scikit-learn/scikit-learn@efa5e3e · GitHub
[go: up one dir, main page]

Skip to content

Commit efa5e3e

Browse files
authored
MAINT Removes remaining references to python 3.6 (#21110)
1 parent b4f7f86 commit efa5e3e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build_tools/github/build_minimal_windows_image.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ set -x
66
PYTHON_VERSION=$1
77
BITNESS=$2
88

9-
if [[ "$PYTHON_VERSION" == "36" || "$BITNESS" == "32" ]]; then
10-
# Python 3.6 and 32-bit architectures are not supported
9+
if [[ "$BITNESS" == "32" ]]; then
10+
# 32-bit architectures are not supported
1111
# by the official Docker images: Tests will just be run
1212
# on the host (instead of the minimal Docker container).
1313
exit 0

build_tools/github/test_windows_wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ set -x
66
PYTHON_VERSION=$1
77
BITNESS=$2
88

9-
if [[ "$PYTHON_VERSION" == "36" || "$BITNESS" == "32" ]]; then
10-
# For Python 3.6 and 32-bit architecture use the regular
9+
if [[ "$BITNESS" == "32" ]]; then
10+
# 32-bit architectures use the regular
1111
# test command (outside of the minimal Docker container)
1212
cp $CONFTEST_PATH $CONFTEST_NAME
1313
pytest --pyargs sklearn

doc/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ command:
247247

248248
.. prompt:: bash $
249249

250-
sudo port install py36-scikit-learn
250+
sudo port install py39-scikit-learn
251251

252252

253253
Anaconda and Enthought Deployment Manager for all supported platforms

0 commit comments

Comments
 (0)
0