We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1e5ad7 commit d0b0e58Copy full SHA for d0b0e58
2 files changed
pyproject.toml
@@ -8,6 +8,7 @@ version = "0.1.0a2"
8
description = "Python edition of RumbleDB, a JSONiq engine"
9
requires-python = ">=3.11"
10
dependencies = [
11
+ "pyspark==3.5.5"
12
]
13
authors = [
14
{name = "Ghislain Fourny", email = "ghislain.fourny@inf.ethz.ch"},
src/jsoniq/session.py
@@ -3,7 +3,6 @@
3
import importlib.resources as pkg_resources
4
5
with pkg_resources.path("jsoniq.jars", "rumbledb-1.24.0.jar") as jar_path:
6
- print("Found Rumble JAR at:", jar_path)
7
jar_path_str = "file://" + str(jar_path)
class MetaRumbleSession(type):
0 commit comments