Skip to content

Commit 2fea77c

Browse files
Merge pull request #12 from RumbleDB/Improvements
Improvements
2 parents 861b0fc + e018e8c commit 2fea77c

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,12 +349,13 @@ Even more queries can be found [here](https://colab.research.google.com/github/R
349349

350350
# Latest updates
351351

352-
## Version 0.3.0 alpha 3
352+
## Version 0.2.0 alpha 4
353353
- Added parameters to the jsoniq magic to select the desired output to print: -j, -df, -pdf
354354
- Added informative error message with a hint on how to fix when trying to get a DataFrame and there is no schema.
355355
- Added parameter -t to the jsoniq magic to measure the response time
356356
- The RumbleSession object now saves the latest result (sequence of items) in a field called lastResult. This is particularly useful in notebooks for post-processing a result in Python after obtained it through the jsoniq magic.
357357
- Improved static type detection upon binding a pandas or pyspark DataFrame as an input variable to a JSONiq queries.
358+
- Now also accepts pandas version 2.2.
358359

359360
## Version 0.2.0 alpha 2
360361
- You can change the result size cap through to the now accessible Rumble configuration (for example rumble .getRumbleConf().setResultSizeCap(10)). This controls how many items can be retrieved at most with a json() call. You can increase it to whichever number you would like if you reach the cap.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "jsoniq"
7-
version = "0.2.0a3"
7+
version = "0.2.0a4"
88
description = "Python edition of RumbleDB, a JSONiq engine"
99
requires-python = ">=3.11"
1010
dependencies = [
1111
"pyspark==4.0",
12-
"pandas==2.3"
12+
"pandas>=2.2"
1313
]
1414
authors = [
1515
{name = "Ghislain Fourny", email = "ghislain.fourny@inf.ethz.ch"},

0 commit comments

Comments
 (0)