Skip to content

Commit

Permalink
Change deprecation comment to past tense (#723)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffwidman committed Oct 16, 2023
1 parent f6cc428 commit 8635b1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -70224,7 +70224,7 @@ function run() {
}
else {
if (version.startsWith('2')) {
core.warning('The support for python 2.7 will be removed on June 19. Related issue: https://github.com/actions/setup-python/issues/672');
core.warning('The support for python 2.7 was removed on June 19, 2023. Related issue: https://github.com/actions/setup-python/issues/672');
}
const installed = yield finder.useCpythonVersion(version, arch, updateEnvironment, checkLatest, allowPreReleases);
pythonVersion = installed.version;
Expand Down
2 changes: 1 addition & 1 deletion src/setup-python.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ async function run() {
} else {
if (version.startsWith('2')) {
core.warning(
'The support for python 2.7 will be removed on June 19. Related issue: https://github.com/actions/setup-python/issues/672'
'The support for python 2.7 was removed on June 19, 2023. Related issue: https://github.com/actions/setup-python/issues/672'
);
}
const installed = await finder.useCpythonVersion(
Expand Down

0 comments on commit 8635b1c

Please sign in to comment.