Skip to content
This repository was archived by the owner on Feb 14, 2023. It is now read-only.

Commit 1ae7842

Browse files
authored
0.23.0rc1
NOMRG test new branch
2 parents 8859f4f + 53a554d commit 1ae7842

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

azure-pipelines.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ schedules:
77
- master
88
always: true
99

10+
variables:
11+
MANYLINUX_URL: "https://pypi.python.org/simple"
12+
1013
jobs:
1114
- template: azure/windows.yml
1215
parameters:
@@ -16,10 +19,8 @@ jobs:
1619
py_3.6_32:
1720
PYTHON_VERSION: "3.6.x"
1821
PYTHON_ARCH: "x86"
19-
NP_BUILD_DEP: "1.12.1"
2022
py_3.6_64:
2123
PYTHON_VERSION: "3.6.x"
22-
NP_BUILD_DEP: "1.12.1"
2324
py_3.7_32:
2425
PYTHON_VERSION: "3.7.x"
2526
PYTHON_ARCH: "x86"

azure/posix.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
vmImage: ${{ parameters.vmImage }}
1010
variables:
1111
REPO_DIR: "scikit-learn"
12-
BUILD_COMMIT: "0.22.2.post1"
12+
BUILD_COMMIT: "0.23.0rc1"
1313
PLAT: "x86_64"
14-
NP_BUILD_DEP: "numpy==1.11.0"
14+
NP_BUILD_DEP: "numpy==1.13.3"
1515
CYTHON_BUILD_DEP: "cython==0.29.14"
1616
SCIPY_BUILD_DEP: "scipy"
1717
JOBLIB_BUILD_DEP: "joblib==0.11"

azure/windows.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
pool:
99
vmImage: ${{ parameters.vmImage }}
1010
variables:
11-
BUILD_COMMIT: "0.22.2.post1"
11+
BUILD_COMMIT: "0.23.0rc1"
1212
SKLEARN_SKIP_NETWORK_TESTS: "1"
13-
NP_BUILD_DEP: "1.11.0"
13+
NP_BUILD_DEP: "1.13.3"
1414
CYTHON_BUILD_DEP: "0.29.14"
1515
SCIPY_BUILD_DEP: "1.1.0"
1616
NIGHTLY_BUILD_COMMIT: "master"

extra_functions.sh

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ function setup_test_venv {
2828
else
2929
source test_venv/Scripts/activate
3030
fi
31+
# Defined python to be within this env
32+
PYTHON_EXE=`which python`
33+
PIP_CMD="$PYTHON_EXE -mpip"
3134
# Note: the idiom "python -m pip install ..." is necessary to upgrade
3235
# pip itself on Windows. Otherwise one would get a permission error on
3336
# pip.exe.

scikit-learn

Submodule scikit-learn updated 508 files

0 commit comments

Comments
 (0)