Skip to content

Commit 089d901

Browse files
Merge branch 'neurodata:submodulev3' into submodulev3
2 parents d9ad68a + cb26e74 commit 089d901

File tree

236 files changed

+1301
-925
lines changed

Some content is hidden

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

236 files changed

+1301
-925
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

.github/scripts/label_title_regex.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Labels PRs based on title. Must be run in a github action with the
22
pull_request_target event."""
3+
34
import json
45
import os
56
import re
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

benchmarks/bench_glm.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
Data comes from a random square matrix.
55
66
"""
7+
78
from datetime import datetime
89

910
import numpy as np

benchmarks/bench_glmnet.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
1717
In both cases, only 10% of the features are informative.
1818
"""
19+
1920
import gc
2021
from time import time
2122

0 commit comments

Comments
 (0)