Skip to content

Commit

Permalink
Update setup.py to allow JPype1 versions >= 1.4.0 (#343)
Browse files Browse the repository at this point in the history
The change from JPype1==1.4.0 to JPype1>=1.4.0 in setup.py is made to ensure compatibility with Python 3.11, as JPype1 1.4.0 does not support it. JPype1 1.4.1 already provides support for Python 3.11, making it a better choice to specify a minimum version while allowing for future updates.
  • Loading branch information
gvozdetsky authored Oct 25, 2023
1 parent 4e132f6 commit 0e52f29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psl-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def main():
},

install_requires = [
'JPype1==1.4.0',
'JPype1>=1.4.0',
'pandas>=0.24.1',
],

Expand Down

0 comments on commit 0e52f29

Please sign in to comment.