From 22e8b5389e0971dff98a737d2a841e9849a842d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20Sj=C3=B6green?= Date: Mon, 10 Feb 2025 10:47:27 +0100 Subject: [PATCH] fix: Use JSR dependencies for `ext/pip` --- ext/pip.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ext/pip.ts b/ext/pip.ts index 3f4e8bd..d06a2fc 100644 --- a/ext/pip.ts +++ b/ext/pip.ts @@ -1,12 +1,12 @@ import { kw, python, PythonError } from "../mod.ts"; -import { join } from "https://deno.land/std@0.203.0/path/mod.ts"; -import { ensureDir } from "https://deno.land/std@0.203.0/fs/mod.ts"; -import { green, yellow } from "https://deno.land/std@0.203.0/fmt/colors.ts"; +import { join } from "jsr:@std/path@^1/join"; +import { ensureDir } from "jsr:@std/fs@^1/ensure-dir"; +import { green, yellow } from "jsr:@std/fmt@^1/colors"; -import type { CacheLocation } from "https://deno.land/x/plug@1.0.3/types.ts"; -import { ensureCacheLocation } from "https://deno.land/x/plug@1.0.3/download.ts"; -import { hash } from "https://deno.land/x/plug@1.0.3/util.ts"; +import type { CacheLocation } from "jsr:@denosaurs/plug@^1/types"; +import { ensureCacheLocation } from "jsr:@denosaurs/plug@^1/download"; +import { hash } from "jsr:@denosaurs/plug@^1/util"; const sys = python.import("sys"); const runpy = python.import("runpy");