Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump jpy to 0.19.0 #6348

Merged
merged 1 commit into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/registry/server-base/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
io.deephaven.project.ProjectType=DOCKER_REGISTRY
deephaven.registry.imageName=ghcr.io/deephaven/server-base:edge
deephaven.registry.imageId=ghcr.io/deephaven/server-base@sha256:f8465d0b0435afaf6cbe0e86ecaae0e0256e32e45c0cb74d80788159b8392df3
deephaven.registry.imageId=ghcr.io/deephaven/server-base@sha256:07cc7f322d57cfe86f174b88d6315ce25bac1b798c14ddb9b833b918810f69ef
2 changes: 1 addition & 1 deletion docker/registry/slim-base/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
io.deephaven.project.ProjectType=DOCKER_REGISTRY
deephaven.registry.imageName=ghcr.io/deephaven/server-slim-base:edge
deephaven.registry.imageId=ghcr.io/deephaven/server-slim-base@sha256:241b3f8a4a5c5a9618214f4bb753b40062a51b9293456e1f0d7771cdb241cae9
deephaven.registry.imageId=ghcr.io/deephaven/server-slim-base@sha256:a01198a4af6bab387a337174fb2babe599e2bd0225a42ff9be31f3052d70e022
6 changes: 3 additions & 3 deletions docker/server-jetty/src/main/server-jetty/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
adbc-driver-manager==1.2.0
adbc-driver-postgresql==1.2.0
connectorx==0.3.3; platform.machine == 'x86_64'
connectorx==0.4.0; platform.machine == 'x86_64'
deephaven-plugin==0.6.0
docstring_parser==0.16
importlib_resources==6.4.5
java-utilities==0.3.0
jedi==0.19.1
jpy==0.18.0
jpy==0.19.0
llvmlite==0.43.0
numba==0.60.0
numpy==2.0.2
pandas==2.2.3
parso==0.8.4
pyarrow==17.0.0
pyarrow==18.0.0
python-dateutil==2.9.0.post0
pytz==2024.2
six==1.16.0
Expand Down
6 changes: 3 additions & 3 deletions docker/server/src/main/server-netty/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
adbc-driver-manager==1.2.0
adbc-driver-postgresql==1.2.0
connectorx==0.3.3; platform.machine == 'x86_64'
connectorx==0.4.0; platform.machine == 'x86_64'
deephaven-plugin==0.6.0
docstring_parser==0.16
importlib_resources==6.4.5
java-utilities==0.3.0
jedi==0.19.1
jpy==0.18.0
jpy==0.19.0
llvmlite==0.43.0
numba==0.60.0
numpy==2.0.2
pandas==2.2.3
parso==0.8.4
pyarrow==17.0.0
pyarrow==18.0.0
python-dateutil==2.9.0.post0
pytz==2024.2
six==1.16.0
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ javax-validation = "2.0.1.Final"
jdom2 = "2.0.6.1"
jetbrains = "26.0.1"
jetty = "11.0.20"
jpy = "0.18.0"
jpy = "0.19.0"
jsinterop = "2.0.2"
# google is annoying, and have different versions released for the same groupId
jsinterop-base = "1.0.1"
Expand Down
4 changes: 3 additions & 1 deletion py/embedded-server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,13 @@ def _compute_version():
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
keywords='Deephaven Development',
python_requires='>=3.8',
install_requires=[
'jpy>=0.18.0',
'jpy>=0.19.0',
'java-utilities',
f"deephaven-core[autocomplete]=={_version}",
'click>=8.1.7',
Expand Down
3 changes: 2 additions & 1 deletion py/server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,12 @@ def _compute_version():
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
keywords='Deephaven Development',
python_requires='>=3.8',
install_requires=[
'jpy>=0.18.0',
'jpy>=0.19.0',
'deephaven-plugin>=0.6.0',
'numpy',
'pandas>=1.5.0',
Expand Down