Fix setup-ci

This commit is contained in:
Reinier Criel 2025-12-15 15:55:41 +01:00
parent 523ce0b6ee
commit c07abe966b

View file

@ -5,7 +5,6 @@ import fs from "fs";
import os from "os"; import os from "os";
import path from "path"; import path from "path";
import { fileURLToPath } from "url"; import { fileURLToPath } from "url";
import { ECOSYSTEM_PY } from "../config/settings.js";
/** @type {string} */ /** @type {string} */
// This checks the current file's dirname in a way that's compatible with: // This checks the current file's dirname in a way that's compatible with:
@ -161,9 +160,6 @@ function modifyPathForCi(shimsDir, binDir) {
} }
function getToolsToSetup() { function getToolsToSetup() {
if (includePython()) { // Python support is now enabled by default (feature flag removed)
return knownAikidoTools; return knownAikidoTools;
} else {
return knownAikidoTools.filter((tool) => tool.ecoSystem !== ECOSYSTEM_PY);
}
} }