Skip to content

Commit

Permalink
revert back the Spark version to 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
maziyarpanahi committed Sep 1, 2023
1 parent a68017f commit 4330072
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
test:
runs-on: ubuntu-22.04
runs-on: macos-latest
env:
TF_CPP_MIN_LOG_LEVEL: 3
steps:
Expand All @@ -17,8 +17,8 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 1.8
# - name: install brew on mac
# run: |
# brew install sbt
- name: install brew on mac
run: |
brew install sbt
- name: Run tests
run: sbt test
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import com.typesafe.sbt.packager.archetypes.JavaAppPackaging
enablePlugins(JavaServerAppPackaging)
enablePlugins(JavaAppPackaging)

val scalaTestVersion = "3.2.14"
val scalaTestVersion = "3.2.15"

name := "spark-nlp-starter"

Expand All @@ -22,7 +22,9 @@ ThisBuild / developers := List(
email = "[email protected]",
url = url("https://github.com/maziyarpanahi")))

val sparkVer = "3.4.1"
// Spark NLP 5.1.0 was compiled with Scala 2.12.15 and Spark 3.3.1
// Do not change these versions unless you know what you are doing
val sparkVer = "3.3.1"
val sparkNLP = "5.1.0"

libraryDependencies ++= {
Expand Down

0 comments on commit 4330072

Please sign in to comment.