Skip to content

Commit 2426a2f

Browse files
committed
Update the version number and run black formatter
1 parent 8c1b5e1 commit 2426a2f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

libmultilabel/linear/linear.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ def _do_train(y: np.ndarray, x: sparse.csr_matrix, options: str) -> np.matrix:
336336
prob = problem(y, x)
337337
param = parameter(options)
338338
if param.solver_type in [solver_names.L2R_L1LOSS_SVC_DUAL, solver_names.L2R_L2LOSS_SVC_DUAL]:
339-
param.w_recalc = True # only works for solving L1/L2-SVM dual
339+
param.w_recalc = True # only works for solving L1/L2-SVM dual
340340
with silent_stderr():
341341
model = train(prob, param)
342342

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = libmultilabel
3-
version = 0.7.2
3+
version = 0.7.3
44
author = LibMultiLabel Team
55
license = MIT License
66
license_file = LICENSE
@@ -25,7 +25,7 @@ classifiers =
2525
[options]
2626
packages = find:
2727
install_requires =
28-
liblinear-multicore
28+
liblinear-multicore>=2.49.0
2929
numba
3030
pandas>1.3.0
3131
PyYAML

0 commit comments

Comments
 (0)