Skip to content

Commit

Permalink
fix: Use JSR dependencies for ext/pip (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
eliassjogreen authored Feb 10, 2025
1 parent 99c6d09 commit ce8bac0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ext/pip.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { kw, python, PythonError } from "../mod.ts";

import { join } from "https://deno.land/[email protected]/path/mod.ts";
import { ensureDir } from "https://deno.land/[email protected]/fs/mod.ts";
import { green, yellow } from "https://deno.land/[email protected]/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");
Expand Down

0 comments on commit ce8bac0

Please sign in to comment.