Skip to content

Commit

Permalink
Relaxed Python requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
vruusmann committed Dec 13, 2024
1 parent 39ad843 commit fc7298f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This package provides Python wrapper classes and functions for the [JPMML-Evalua
# Prerequisites #

* Java Platform, Standard Edition 8 or newer.
* Python 3.9 or newer.
* Python 3.8 or newer.

# Installation #

Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
jpype1==1.5.1
numpy<=1.26.4
numpy==1.24.4; python_version == '3.8'
numpy==1.26.4; python_version >= '3.9'
pandas
py4j==0.10.9.7
pyjnius==1.6.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"jpmml_evaluator=jpmml_evaluator.cli:main",
],
},
python_requires = ">=3.9",
python_requires = ">=3.8",
install_requires = [
"jpype1",
"pandas",
Expand Down

0 comments on commit fc7298f

Please sign in to comment.