Skip to content

Commit be6c6b5

Browse files
authored
Merge pull request #1 from IntelPython/main
Updating code from the main repo
2 parents 155bb4a + 88fd9c8 commit be6c6b5

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616

1717
repos:
1818
- repo: https://github.com/psf/black
19-
rev: 23.7.0
19+
rev: 24.1.1
2020
hooks:
2121
- id: black
2222
language_version: python3.10
2323
- repo: https://github.com/PyCQA/isort
24-
rev: 5.12.0
24+
rev: 5.13.2
2525
hooks:
2626
- id: isort
2727
language_version: python3.10

azure-pipelines.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,10 @@ jobs:
1919
pool:
2020
vmImage: 'ubuntu-22.04'
2121
steps:
22-
- task: UsePythonVersion@0
23-
inputs:
24-
versionSpec: '3.10'
25-
addToPath: true
2622
- script: |
27-
python -m pip install --upgrade pip setuptools
28-
pip install isort black
29-
isort --check . && black --check .
23+
python -m pip install --upgrade pip pre-commit==4.0.1
24+
pre-commit install
25+
pre-commit run --all-files --show-diff-on-failure
3026
displayName: 'Linting'
3127
- job: Linux
3228
dependsOn: Lint

configs/regular/kmeans.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"TEMPLATES": {
7171
"sklearn kmeans": {
7272
"SETS": [
73-
"sklearn-ex[preview] implementations",
73+
"sklearn-ex[cpu,gpu] implementations",
7474
"common kmeans parameters",
7575
"sklearn kmeans parameters",
7676
"kmeans datasets"

0 commit comments

Comments
 (0)