Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tianlh
LightGBM-DCU
Commits
5e4ab24b
Unverified
Commit
5e4ab24b
authored
Aug 14, 2024
by
James Lamb
Committed by
GitHub
Aug 14, 2024
Browse files
[ci] update some linting versions (#6598)
parent
07eb351a
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
9 deletions
+10
-9
.ci/test.sh
.ci/test.sh
+6
-6
.github/workflows/static_analysis.yml
.github/workflows/static_analysis.yml
+2
-1
.pre-commit-config.yaml
.pre-commit-config.yaml
+1
-1
tests/python_package_test/test_sklearn.py
tests/python_package_test/test_sklearn.py
+1
-1
No files found.
.ci/test.sh
View file @
5e4ab24b
...
...
@@ -97,12 +97,12 @@ fi
if
[[
$TASK
==
"lint"
]]
;
then
mamba create
-q
-y
-n
$CONDA_ENV
\
${
CONDA_PYTHON_REQUIREMENT
}
\
'cmakelint>=1.4.
2
'
\
'cmakelint>=1.4.
3
'
\
'cpplint>=1.6.0'
\
'matplotlib-base>=3.
8.3
'
\
'mypy>=1.
8.0
'
\
'pre-commit>=3.
6
.0'
\
'pyarrow
>=6
.0'
\
'matplotlib-base>=3.
9.1
'
\
'mypy>=1.
11.1
'
\
'pre-commit>=3.
8
.0'
\
'pyarrow
-core>=17
.0'
\
'r-lintr>=3.1.2'
source
activate
$CONDA_ENV
echo
"Linting Python code"
...
...
@@ -124,7 +124,7 @@ if [[ $TASK == "check-docs" ]] || [[ $TASK == "check-links" ]]; then
-y
\
-n
$CONDA_ENV
\
'doxygen>=1.10.0'
\
'rstcheck>=6.2.
0
'
||
exit
1
'rstcheck>=6.2.
4
'
||
exit
1
source
activate
$CONDA_ENV
# check reStructuredText formatting
cd
"
${
BUILD_DIRECTORY
}
/python-package"
...
...
.github/workflows/static_analysis.yml
View file @
5e4ab24b
...
...
@@ -17,13 +17,14 @@ concurrency:
env
:
COMPILER
:
'
gcc'
MAKEFLAGS
:
'
-j4'
OS_NAME
:
'
linux'
PYTHON_VERSION
:
'
3.12'
jobs
:
test
:
name
:
${{ matrix.task }}
runs-on
:
ubuntu-
22.04
runs-on
:
ubuntu-
latest
timeout-minutes
:
60
strategy
:
fail-fast
:
false
...
...
.pre-commit-config.yaml
View file @
5e4ab24b
...
...
@@ -25,7 +25,7 @@ repos:
args
:
[
"
--settings-path"
,
"
python-package/pyproject.toml"
]
-
repo
:
https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev
:
v0.
4
.7
rev
:
v0.
5
.7
hooks
:
# Run the linter.
-
id
:
ruff
...
...
tests/python_package_test/test_sklearn.py
View file @
5e4ab24b
...
...
@@ -53,7 +53,7 @@ def _create_data(task, n_samples=100, n_features=4):
elif
task
==
"multiclass-classification"
:
centers
=
3
else
:
ValueError
(
f
"Unknown classification task '
{
task
}
'"
)
raise
ValueError
(
f
"Unknown classification task '
{
task
}
'"
)
X
,
y
=
make_blobs
(
n_samples
=
n_samples
,
n_features
=
n_features
,
centers
=
centers
,
random_state
=
42
)
g
=
None
elif
task
==
"regression"
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment