8000 fix: Use JSR dependencies for `ext/pip` (#82) · denosaurs/deno_python@ce8bac0 · GitHub
[go: up one dir, main page]

Skip to content

Commit ce8bac0

Browse files
fix: Use JSR dependencies for ext/pip (#82)
1 parent 99c6d09 commit ce8bac0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ext/pip.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import { kw, python, PythonError } from "../mod.ts";
22

3-
import { join } from "https://deno.land/std@0.203.0/path/mod.ts";
4-
import { ensureDir } from "https://deno.land/std@0.203.0/fs/mod.ts";
5-
import { green, yellow } from "https://deno.land/std@0.203.0/fmt/colors.ts";
3+
import { join } from "jsr:@std/path@^1/join";
4+
import { ensureDir } from "jsr:@std/fs@^1/ensure-dir";
5+
import { green, yellow } from "jsr:@std/fmt@^1/colors";
66

7-
import type { CacheLocation } from "https://deno.land/x/plug@1.0.3/types.ts";
8-
import { ensureCacheLocation } from "https://deno.land/x/plug@1.0.3/download.ts";
9-
import { hash } from "https://deno.land/x/plug@1.0.3/util.ts";
7+
import type { CacheLocation } from "jsr:@denosaurs/plug@^1/types";
8+
import { ensureCacheLocation } from "jsr:@denosaurs/plug@^1/download";
9+
import { hash } from "jsr:@denosaurs/plug@^1/util";
1010

1111
const sys = python.import("sys");
1212
const runpy = python.import("runpy");

0 commit comments

Comments
 (0)
0