Skip to content

Commit

Permalink
chore: Upgrade jedi to 0.19.1 (deephaven#5693)
Browse files Browse the repository at this point in the history
Adds support for Python 3.11 and 3.12.

Also, the 0.19.0 changelog notes a massive performance improvement for
`Interpreter` mode which we use by default. It felt a bit snappier to me
while using it locally.

Also adds a new flag to avoid unsafe execution if we want to enable
that. Not sure what the default is based on the changelog.

https://jedi.readthedocs.io/en/latest/docs/changelog.html
  • Loading branch information
mattrunyon authored Jun 28, 2024
1 parent 92a5ad7 commit 5a81698
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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:ccb2934e6e24c1c81a83daa81b68ddcf796cba74b2ccbd6b3aa9a34df214c6e1
deephaven.registry.imageId=ghcr.io/deephaven/server-base@sha256:6e10203f44b175dcaabb9eb3c6ba743371193c578f85ae30919e9caed3846359
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:ca9b55d2e075dc12e220b8cb13fdd9cd4cb7fc8f68dfdaba99fc240f5a916266
deephaven.registry.imageId=ghcr.io/deephaven/server-slim-base@sha256:8011b73d42aebf3d240c25e2b0a12c21dbc0049fa8444924fe9f9dbeb1ca9ddf
2 changes: 1 addition & 1 deletion docker/server-jetty/src/main/server-jetty/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ connectorx==0.3.3; platform.machine == 'x86_64'
deephaven-plugin==0.6.0
importlib_resources==6.4.0
java-utilities==0.3.0
jedi==0.18.2
jedi==0.19.1
jpy==0.17.0
llvmlite==0.43.0
numba==0.60.0
Expand Down
2 changes: 1 addition & 1 deletion docker/server/src/main/server-netty/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ connectorx==0.3.3; platform.machine == 'x86_64'
deephaven-plugin==0.6.0
importlib_resources==6.4.0
java-utilities==0.3.0
jedi==0.18.2
jedi==0.19.1
jpy==0.17.0
llvmlite==0.43.0
numba==0.60.0
Expand Down
2 changes: 1 addition & 1 deletion py/server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def _compute_version():
'numba; python_version < "3.13"',
],
extras_require={
"autocomplete": ["jedi==0.18.2"],
"autocomplete": ["jedi==0.19.1"],
},
entry_points={
'deephaven.plugin': ['registration_cls = deephaven.pandasplugin:PandasPluginRegistration']
Expand Down

0 comments on commit 5a81698

Please sign in to comment.