File tree Expand file tree Collapse file tree 4 files changed +5
-7
lines changed
Expand file tree Collapse file tree 4 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 11# Pull members from modules to Orange.classification namespace
2- # pylint: disable=wildcard-import
2+ # pylint: disable=wildcard-import,broad-except
33
44from .base_classification import (ModelClassification as Model ,
55 LearnerClassification as Learner ,
2323from .scoringsheet import *
2424try :
2525 from .catgb import *
26- except ModuleNotFoundError :
26+ except Exception :
2727 pass
2828from .gb import *
2929try :
Original file line number Diff line number Diff line change 1717from ..classification .simple_tree import *
1818try :
1919 from .catgb import *
20- except ModuleNotFoundError :
20+ except Exception :
2121 pass
2222from .gb import *
2323try :
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ requirements:
2323 - python
2424 - pip
2525 - cython
26- - numpy
26+ - numpy >= 2
2727 - recommonmark
2828 - setuptools
2929 - sphinx >=4.2.0,<8
@@ -43,14 +43,13 @@ requirements:
4343 # core requirements
4444 - baycomp >=1.0.2
4545 - bottleneck >=1.3.4
46- - catboost >=1.0.1
4746 - chardet >=3.0.2
4847 - httpx >=0.21
4948 - joblib >=1.2.0
5049 - keyring
5150 - keyrings.alt
5251 - networkx
53- - numpy >=1.20.0,<2
52+ - numpy >=1.20.0
5453 - openpyxl >=3.1.3
5554 - openTSNE >=0.6.1,!=0.7.0
5655 - pandas >=1.4.0,!=1.5.0,!=2.0.0
Original file line number Diff line number Diff line change 11baycomp>=1.0.2
22bottleneck>=1.3.4
3- catboost>=1.0.1
43# Encoding detection
54chardet>=3.0.2
65httpx>=0.21.0
You can’t perform that action at this time.
0 commit comments