Skip to content

Commit 228b394

Browse files
Activate LFS when deplyoing
Try renaming the jar
2 parents e134a21 + c2f7b6c commit 228b394

File tree

6 files changed

+5
-3
lines changed

6 files changed

+5
-3
lines changed

.github/workflows/deploy-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212
with:
1313
persist-credentials: false
14+
lfs: true
1415
- name: Set up Python
1516
uses: actions/setup-python@v5
1617
with:

.github/workflows/deploy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
- uses: actions/checkout@v4
1212
with:
1313
persist-credentials: false
14+
lfs: true
1415
- name: Set up Python
1516
uses: actions/setup-python@v5
1617
with:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "jsoniq"
7-
version = "2.0.7"
7+
version = "2.0.8"
88
description = "Python edition of RumbleDB, a JSONiq engine"
99
requires-python = ">=3.11"
1010
dependencies = [

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pyspark==4.0
1+
pyspark==4.0.1
22
pandas==2.3

src/jsoniq/session.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import pandas as pd
88
import importlib.resources as pkg_resources
99

10-
with pkg_resources.path("jsoniq.jars", "rumbledb-2.0.0.jar") as jar_path:
10+
with pkg_resources.path("jsoniq.jars", "rumbledb-2.0.8.jar") as jar_path:
1111
jar_path_str = "file://" + str(jar_path)
1212

1313
def get_spark_version():

0 commit comments

Comments
 (0)