8000 Change deprecation comment to past tense (#723) · dbowring/setup-python@8635b1c · GitHub
[go: up one dir, main page]

Skip to content
Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8635b1c

Browse files
authored
Change deprecation comment to past tense (actions#723)
1 parent f6cc428 commit 8635b1c
< 8000 /div>

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/setup/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70224,7 +70224,7 @@ function run() {
7022470224
8000 }
7022570225
else {
7022670226
if (version.startsWith('2')) {
70227-
core.warning('The support for python 2.7 will be removed on June 19. Related issue: https://github.com/actions/setup-python/issues/672');
70227+
core.warning('The support for python 2.7 was removed on June 19, 2023. Related issue: https://github.com/actions/setup-python/issues/672');
7022870228
}
7022970229
const installed = yield finder.useCpythonVersion(version, arch, updateEnvironment, checkLatest, allowPreReleases);
7023070230
pythonVersion = installed.version;

src/setup-python.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ async function run() {
124124
} else {
125125
if (version.startsWith('2')) {
126126
core.warning(
127-
'The support for python 2.7 will be removed on June 19. Related issue: https://github.com/actions/setup-python/issues/672'
127+
'The support for python 2.7 was removed on June 19, 2023. Related issue: https://github.com/actions/setup-python/issues/672'
128128
);
129129
}
130130
const installed = await finder.useCpythonVersion(

0 commit comments

Comments
 (0)
0