Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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("."))
Expand Down
7 changes: 3 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Loading