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

Cleanup python deephaven package dependencies #2538

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 0 additions & 5 deletions engine/table/python/core/deephaven_jpy_init.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
#!/usr/bin/python

# DO NOT DELETE THESE IMPORTS:
# dill and base64 are required for our PickledResult to function properly
import dill
import base64

import jpy
import os

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/**
* Pickled result for a Python fetch.
*/
@Deprecated
devinrsmith marked this conversation as resolved.
Show resolved Hide resolved
public class PickledResult implements Serializable {
private String pickled;
private String pythonVersion; // version of python used to perform pickle
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
* remote Python session should execute queries which interact wtih this class. The script sessions that run for
* PersistentQueries or consoles are handled separately by the {@link PythonDeephavenSession}.
*/
@Deprecated
devinrsmith marked this conversation as resolved.
Show resolved Hide resolved
public enum WorkerPythonEnvironment {
DEFAULT;

Expand Down
5 changes: 1 addition & 4 deletions py/server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,8 @@ def normalize_version(version):
install_requires=['deephaven-jpy=={}'.format(__normalized_version__),
'deephaven-plugin',
'numpy',
'dill>=0.2.8',
'wrapt',
'pandas',
'numba;python_version>"3.0"',
'enum34;python_version<"3.4"'
'numba'
],
entry_points={
'deephaven.plugin': ['registration_cls = deephaven.pandasplugin:PandasPluginRegistration']
Expand Down