Skip to content

Commit d0b0e58

Browse files
author
Ghislain Fourny
committed
Add pyspark dependency
1 parent e1e5ad7 commit d0b0e58

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ version = "0.1.0a2"
88
description = "Python edition of RumbleDB, a JSONiq engine"
99
requires-python = ">=3.11"
1010
dependencies = [
11+
"pyspark==3.5.5"
1112
]
1213
authors = [
1314
{name = "Ghislain Fourny", email = "ghislain.fourny@inf.ethz.ch"},

src/jsoniq/session.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import importlib.resources as pkg_resources
44

55
with pkg_resources.path("jsoniq.jars", "rumbledb-1.24.0.jar") as jar_path:
6-
print("Found Rumble JAR at:", jar_path)
76
jar_path_str = "file://" + str(jar_path)
87

98
class MetaRumbleSession(type):

0 commit comments

Comments
 (0)