diff --git a/.github/workflows/deploy-test.yml b/.github/workflows/deploy-test.yml index 1bfd6ff..5bffff2 100644 --- a/.github/workflows/deploy-test.yml +++ b/.github/workflows/deploy-test.yml @@ -11,6 +11,7 @@ jobs: - uses: actions/checkout@v4 with: persist-credentials: false + lfs: true - name: Set up Python uses: actions/setup-python@v5 with: diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7e8d12f..35e7551 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -11,6 +11,7 @@ jobs: - uses: actions/checkout@v4 with: persist-credentials: false + lfs: true - name: Set up Python uses: actions/setup-python@v5 with: diff --git a/pyproject.toml b/pyproject.toml index c416703..ec4fc1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "jsoniq" -version = "2.0.7" +version = "2.0.8" description = "Python edition of RumbleDB, a JSONiq engine" requires-python = ">=3.11" dependencies = [ diff --git a/requirements.txt b/requirements.txt index 0368767..97985f6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -pyspark==4.0 +pyspark==4.0.1 pandas==2.3 diff --git a/src/jsoniq/jars/rumbledb-2.0.0.jar b/src/jsoniq/jars/rumbledb-2.0.8.jar similarity index 100% rename from src/jsoniq/jars/rumbledb-2.0.0.jar rename to src/jsoniq/jars/rumbledb-2.0.8.jar diff --git a/src/jsoniq/session.py b/src/jsoniq/session.py index 8dcb76a..e0dda1d 100644 --- a/src/jsoniq/session.py +++ b/src/jsoniq/session.py @@ -7,7 +7,7 @@ import pandas as pd import importlib.resources as pkg_resources -with pkg_resources.path("jsoniq.jars", "rumbledb-2.0.0.jar") as jar_path: +with pkg_resources.path("jsoniq.jars", "rumbledb-2.0.8.jar") as jar_path: jar_path_str = "file://" + str(jar_path) def get_spark_version():