Skip to content

Commit 3ba5f74

Browse files
Merge branch 'submodulev3' of github.com:ssec-jhu/scikit-learn into submodulev3
2 parents 548493c + 089d901 commit 3ba5f74

File tree

97 files changed

+994
-705
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+994
-705
lines changed

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.* export-ignore
2+
asv_benchmarks export-ignore
3+
azure-pipelines.yml export-ignore
4+
benchmarks export-ignore
5+
build_tools export-ignore
6+
maint_tools export-ignore
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
name: "Check Manifest"
1+
name: "Check sdist"
22

33
on:
44
schedule:
55
- cron: '0 0 * * *'
66

77
jobs:
8-
check-manifest:
8+
check-sdist:
99
# Don't run on forks
1010
if: github.repository == 'scikit-learn/scikit-learn'
1111

@@ -19,15 +19,15 @@ jobs:
1919
# scipy and cython are required to build sdist
2020
run: |
2121
python -m pip install --upgrade pip
22-
pip install check-manifest scipy cython
22+
pip install check-sdist
2323
- run: |
24-
check-manifest -v
24+
check-sdist --inject-junk
2525
2626
update-tracker:
2727
uses: ./.github/workflows/update_tracking_issue.yml
2828
if: ${{ always() }}
29-
needs: [check-manifest]
29+
needs: [check-sdist]
3030
with:
31-
job_status: ${{ needs.check-manifest.result }}
31+
job_status: ${{ needs.check-sdist.result }}
3232
secrets:
3333
BOT_GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ repos:
1212
- id: ruff
1313
args: ["--fix", "--output-format=full"]
1414
- repo: https://github.com/psf/black
15-
rev: 23.3.0
15+
rev: 24.3.0
1616
hooks:
1717
- id: black
1818
- repo: https://github.com/pre-commit/mirrors-mypy
19-
rev: v1.3.0
19+
rev: v1.9.0
2020
hooks:
2121
- id: mypy
2222
files: sklearn/

COPYING

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2007-2023 The scikit-learn developers.
3+
Copyright (c) 2007-2024 The scikit-learn developers.
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Version | Supported |
66
| ------------- | ------------------ |
7-
| 1.4.1.post1 | :white_check_mark: |
8-
| < 1.4.1.post1 | :x: |
7+
| 1.4.2 | :white_check_mark: |
8+
| < 1.4.2 | :x: |
99

1010
## Reporting a Vulnerability
1111

asv_benchmarks/asv.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"matrix": {
7979
"numpy": ["1.25.2"],
8080
"scipy": ["1.11.2"],
81-
"cython": ["3.0.9"],
81+
"cython": ["3.0.10"],
8282
"joblib": ["1.3.2"],
8383
"threadpoolctl": ["3.2.0"],
8484
"pandas": ["2.1.0"]

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ jobs:
124124
vmImage: ubuntu-22.04
125125
variables:
126126
# Need to match Python version and Emscripten version for the correct
127-
# Pyodide version. For example, for Pyodide version 0.25.0, see
128-
# https://github.com/pyodide/pyodide/blob/0.25.0/Makefile.envs
129-
PYODIDE_VERSION: '0.25.0'
127+
# Pyodide version. For example, for Pyodide version 0.25.1, see
128+
# https://github.com/pyodide/pyodide/blob/0.25.1/Makefile.envs
129+
PYODIDE_VERSION: '0.25.1'
130130
EMSCRIPTEN_VERSION: '3.1.46'
131131
PYTHON_VERSION: '3.11.3'
132132

build_tools/azure/debian_atlas_32bit_lock.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ attrs==23.2.0
88
# via pytest
99
coverage==7.4.4
1010
# via pytest-cov
11-
cython==3.0.9
11+
cython==3.0.10
1212
# via -r build_tools/azure/debian_atlas_32bit_requirements.txt
1313
iniconfig==2.0.0
1414
# via pytest

build_tools/azure/debian_atlas_32bit_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DO NOT EDIT: this file is generated from the specification found in the
22
# following script to centralize the configuration for CI builds:
33
# build_tools/update_environments_and_lock_files.py
4-
cython==3.0.9 # min
4+
cython==3.0.10 # min
55
joblib==1.2.0 # min
66
threadpoolctl==2.2.0
77
pytest==7.1.2 # min

build_tools/azure/pylatest_conda_forge_mkl_linux-64_conda.lock

Lines changed: 31 additions & 26 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)