From b283e2588749b73ddcdc16cbd6834dc4c827d459 Mon Sep 17 00:00:00 2001 From: Kien Dang Date: Fri, 31 Oct 2025 18:35:08 +0800 Subject: [PATCH] Update --- .github/workflows/ci.yml | 2 +- build.sbt | 1 - project/Dependencies.scala | 7 +++---- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 184cf8a..58812ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] jdk: [8] - python: [3.8, 3.9, "3.10"] + python: [3.8, 3.9, "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@master - uses: coursier/cache-action@v6.3 diff --git a/build.sbt b/build.sbt index 8355afe..3ad2557 100644 --- a/build.sbt +++ b/build.sbt @@ -21,7 +21,6 @@ lazy val scala213 = "2.13.17" lazy val scala3 = "3.3.7" ThisBuild / scalaVersion := scala213 -ThisBuild / scalafixDependencies += organizeImports lazy val root = project .in(file(".")) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index c1ff9f5..7098334 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -2,8 +2,7 @@ import sbt._ object Dependencies { lazy val scalaCollectionCompat = - "org.scala-lang.modules" %% "scala-collection-compat" % "2.7.0" - lazy val scalapy = "me.shadaj" %% "scalapy-core" % "0.5.2" - lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.2.11" - lazy val organizeImports = "com.github.liancheng" %% "organize-imports" % "0.6.0" + "org.scala-lang.modules" %% "scala-collection-compat" % "2.12.0" + lazy val scalapy = "dev.scalapy" %% "scalapy-core" % "0.5.3" + lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.2.19" }