Skip to main content
Version: 8.0.1

Pre-release versions

If you are helping to test a pre-release version of the Pathling library, you can use the following instructions to set up your environment.

You need to configure in the snapshots repository so that the PathlingContext can find the pre-release version of the library.

from pathling import PathlingContext
from pyspark.sql import SparkSession

spark = (
SparkSession.builder.config(
"spark.jars.packages",
"au.csiro.pathling:library-runtime:[some pre-release version]-SNAPSHOT"
)
.config(
"spark.jars.repositories",
"https://central.sonatype.com/repository/maven-snapshots",
)
.getOrCreate()
)

pc = PathlingContext.create(spark)