Skip to content

Commit b9bb39f

Browse files
update 2025.10 with current changes (#745)
* Bump version to 2025.11.0-dev (#730) * update so deprecation shown for <3.9 not <=3.9 (#739) * Bump tar-fs from 2.1.2 to 2.1.3 (#722) Bumps [tar-fs](https://github.com/mafintosh/tar-fs) from 2.1.2 to 2.1.3. - [Commits](https://github.com/mafintosh/tar-fs/commits) --- updated-dependencies: - dependency-name: tar-fs dependency-version: 2.1.3 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * add updates from main --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 34d2833 commit b9bb39f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/extension/debugger/adapter/factory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export class DebugAdapterDescriptorFactory implements IDebugAdapterDescriptorFac
181181
if (interpreter) {
182182
if (
183183
(interpreter.version?.major ?? 0) < 3 ||
184-
((interpreter.version?.major ?? 0) <= 3 && (interpreter.version?.minor ?? 0) <= 9)
184+
((interpreter.version?.major ?? 0) <= 3 && (interpreter.version?.minor ?? 0) < 9)
185185
) {
186186
this.showDeprecatedPythonMessage();
187187
}

0 commit comments

Comments
 (0)