Skip to content

Commit 28a0a8a

Browse files
authored
Merge pull request #38 from adaa-polsl/fix/jpype_version
Fix problem with new jpype1 version, which was causing problems. New Jpype1 1.6.0 was released 07.07 and after that some of the unit tests stopped working throwing error: C [_jpype.cpython-313-x86_64-linux-gnu.so+0x7653b] JPTypeManager::findClassByName(std::string const&)+0x3b Configuration in setup.py was changed from ‘JPype1>=1.5.0’ to ‘JPype1==1.5.2’ so that the latest working version would install
2 parents 8c152bd + 5c51ff8 commit 28a0a8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setuptools.setup(
1212
name="rulekit",
13-
version='2.1.24.1',
13+
version='2.1.24.2',
1414
author="Cezary Maszczyk",
1515
author_email="cezary.maszczyk@gmail.com",
1616
description="Comprehensive suite for rule-based learning",
@@ -37,7 +37,7 @@
3737
'pandas>=1.5',
3838
'scipy>=1.11',
3939
'scikit-learn>=1.1',
40-
'JPype1>=1.5.0',
40+
'JPype1==1.5.2',
4141
'pydantic>=2.0',
4242
'requests>=2.32.3',
4343
],

0 commit comments

Comments
 (0)