Skip to content

Commit a607b5c

Browse files
committed
Limit jpype1 highest version to 1.5.0
jpype version 1.5.1 fails to start the JVM on Windows for currently unknown reasons. See #70 and jpype-project/jpype#1242.
1 parent d05ba2c commit a607b5c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dev-environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ channels:
2020
dependencies:
2121
- python >= 3.8
2222
# Project dependencies
23-
- jpype1 >= 1.3.0
23+
- jpype1 >= 1.3.0, <= 1.5.0
2424
- jgo
2525
- openjdk >= 8, < 12
2626
# Test dependencies

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ channels:
2121
dependencies:
2222
- python >= 3.8
2323
# Project dependencies
24-
- jpype1 >= 1.3.0
24+
- jpype1 >= 1.3.0, <= 1.5.0
2525
- jgo
2626
- openjdk >= 8
2727
# Project from source

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ classifiers = [
3232
# NB: Keep this in sync with environment.yml AND dev-environment.yml!
3333
requires-python = ">=3.8"
3434
dependencies = [
35-
"jpype1 >= 1.3.0",
35+
"jpype1 >= 1.3.0, <= 1.5.0",
3636
"jgo",
3737
]
3838

0 commit comments

Comments
 (0)