We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6700afd commit 3a7f7c7Copy full SHA for 3a7f7c7
packages/publish-pypi/index.ts
@@ -71,6 +71,17 @@ async function run() {
71
)
72
);
73
74
+ await exec(
75
+ "pip",
76
+ [
77
+ "install",
78
+ "--user",
79
+ "--upgrade",
80
+ "--no-cache-dir",
81
+ "pip>=23.3.1",
82
+ ]
83
+ );
84
+
85
await exec(
86
"pip",
87
[
packages/publish-pypi/requirements.ts
@@ -7,7 +7,7 @@ export const runtime_prerequisites_txt = [
7
`pip-with-requires-python==1.0.1
8
9
# The following packages are considered to be unsafe in a requirements file:
10
-pip==22.3.1`,
+pip>=23.3.1`,
11
];
12
13
export const runtime_in = [
0 commit comments