Skip to content

Commit 55479fa

Browse files
committed
Remove unused prop
1 parent 137a0cd commit 55479fa

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

build.sbt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ lazy val scala3 = "3.1.0"
2222

2323
lazy val scalapyVersion = getProp("plugin.scalapy.version").getOrElse("0.5.2")
2424

25-
lazy val enableScripted = getProp("plugin.ci").isDefined
26-
2725
ThisBuild / scalaVersion := scala213
2826

2927
ThisBuild / scalafixDependencies += organizeImports
@@ -73,7 +71,7 @@ lazy val tests = project
7371
scriptedLaunchOpts ++= {
7472
Seq(s"-Dplugin.scalapy.version=$scalapyVersion") ++
7573
getProps("plugin.python.executable", "plugin.virtualenv") ++
76-
Seq("-Xmx1024M", "-Dplugin.version=" + (`python-native-libs` / version).value)
74+
Seq("-Xmx1024M", "-Dplugin.version=" + version.value)
7775
},
7876
scriptedBufferLog := false
7977
)

scripts/integration_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22

33
sbt +publishLocal
4-
sbt -Dplugin.ci=true -Dplugin.python.executable="$1" -Dplugin.scalapy.version="$2" scripted
4+
sbt -Dplugin.python.executable="$1" -Dplugin.scalapy.version="$2" scripted

scripts/virtualenv_test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ python3 -m venv "${VENV_DIR}"
1010
sbt +publishLocal
1111

1212
sbt \
13-
-Dplugin.ci=true \
1413
-Dplugin.virtualenv=true \
1514
-Dplugin.python.executable="${VENV_DIR}/bin/python" \
1615
-Dplugin.scalapy.version="$1" \

0 commit comments

Comments
 (0)