File tree 4 files changed +14
-9
lines changed
4 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ celerybeat.pid
103
103
.env
104
104
.venv
105
105
env /
106
+ test-pypi /
106
107
venv /
107
108
ENV /
108
109
env.bak /
Original file line number Diff line number Diff line change 9
9
10
10
setuptools .setup (
11
11
name = "rulekit" ,
12
- version = '1.7.1 ' ,
12
+ version = '1.7.2 ' ,
13
13
author = "Cezary Maszczyk" ,
14
14
15
15
description = "Comprehensive suite for rule-based learning" ,
32
32
include_package_data = True ,
33
33
python_requires = '>=3.6' ,
34
34
install_requires = [
35
- "pandas ~= 2.1.4 " ,
36
- "scikit-learn ~ = 1.3.2 " ,
37
- "requests ~ = 2.31.0" ,
38
- "scipy ~ = 1.11.4 " ,
39
- "joblib ~ = 1.3.2 " ,
40
- "JPype1 ~ = 1.5.0" ,
41
- "pydantic ~ = 2.5.3 "
35
+ "pandas >= 1.5.0, < 2.3.0 " ,
36
+ "scikit-learn > = 1.1.0, < 1.4.0 " ,
37
+ "requests > = 2.31.0, < 2.32 .0" ,
38
+ "scipy > = 1.11.0, < 1.12.0 " ,
39
+ "joblib > = 1.3.0, < 1.4.0 " ,
40
+ "JPype1 > = 1.5.0, < 1.6 .0" ,
41
+ "pydantic > = 2.0.0, < 2.6.0 "
42
42
],
43
43
test_suite = "tests" ,
44
44
project_urls = {
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ def test_induction_progress_listener(self):
20
20
reg = regression .RuleRegressor ()
21
21
example_set = test_case .example_set
22
22
MAX_RULES = 3
23
+
23
24
class EventListener (RuleInductionProgressListener ):
24
25
25
26
lock = threading .Lock ()
@@ -76,6 +77,7 @@ class TestExpertRegressor(unittest.TestCase):
76
77
def setUpClass (cls ):
77
78
RuleKit .init ()
78
79
80
+ @unittest .skip ("TODO skipping due to Issue #17" )
79
81
def test_compare_with_java_results (self ):
80
82
test_cases = get_test_cases ('RegressionExpertSnCTest' )
81
83
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ def setUpClass(cls):
17
17
def test_induction_progress_listener (self ):
18
18
test_case = get_test_cases ('SurvivalLogRankSnCTest' )[0 ]
19
19
20
- surv = survival .SurvivalRules (survival_time_attr = test_case .survival_time )
20
+ surv = survival .SurvivalRules (
21
+ survival_time_attr = test_case .survival_time )
21
22
example_set = test_case .example_set
22
23
23
24
class EventListener (RuleInductionProgressListener ):
@@ -71,6 +72,7 @@ class TestExpertSurvivalLogRankTree(unittest.TestCase):
71
72
def setUpClass (cls ):
72
73
RuleKit .init ()
73
74
75
+ @unittest .skip ("TODO skipping due to Issue #17" )
74
76
def test_compare_with_java_results (self ):
75
77
test_cases = get_test_cases ('SurvivalLogRankExpertSnCTest' )
76
78
You can’t perform that action at this time.
0 commit comments