Skip to content

Commit 7314523

Browse files
committed
fix: add missing dependency
1 parent 1e0abcf commit 7314523

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

requirements.txt

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
atomicwrites==1.4.0
2+
attrs==20.3.0
3+
certifi==2021.5.30
4+
chardet==4.0.0
5+
colorama==0.4.4
6+
idna==2.10
7+
iniconfig==1.1.1
8+
joblib==1.0.0
9+
JPype1==1.2.1
10+
more-itertools==8.8.0
11+
numpy==1.20.0
12+
packaging==20.9
13+
pandas==1.2.1
14+
pluggy==0.13.1
15+
py==1.10.0
16+
pyparsing==2.4.7
17+
pytest==4.6.11
18+
python-dateutil==2.8.1
19+
pytz==2021.1
20+
requests==2.25.1
21+
scikit-learn==0.24.1
22+
scipy==1.6.0
23+
six==1.15.0
24+
sklearn==0.0
25+
threadpoolctl==2.1.0
26+
toml==0.10.2
27+
urllib3==1.26.5
28+
wcwidth==0.2.5

rulekit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .main import RuleKit
22

3-
__version__ = '1.5.5'
3+
__version__ = '1.5.7'
44

55
RuleKit = RuleKit

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setuptools.setup(
1111
name="rulekit",
12-
version='1.5.6',
12+
version='1.5.7',
1313
author="Cezary Maszczyk",
1414
author_email="[email protected]",
1515
description="Comprehensive suite for rule-based learning",
@@ -36,7 +36,8 @@
3636
"scikit-learn ~= 0.24.1",
3737
"requests ~= 2.25.1",
3838
"scipy ~= 1.6.0",
39-
"joblib ~= 1.0.0"
39+
"joblib ~= 1.0.0",
40+
"JPype1 ~= 1.2.1",
4041
],
4142
test_suite="tests",
4243
download_url = 'https://github.com/adaa-polsl/RuleKit-python/archive/refs/tags/v1.5.6.tar.gz',

0 commit comments

Comments
 (0)