Skip to content

Commit 40aa281

Browse files
Bump 2025.8 (#705)
* update check * Bump 2025.7 dev (#685) * update check * bump to dev 2025.7-dev * fixes the base * Allow autoReload in attach configurations (#676) Co-authored-by: Eleanor Boyd <[email protected]> * bump to release v2025.8.0 --------- Co-authored-by: Rich Chiodo <[email protected]>
1 parent 22d6792 commit 40aa281

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "debugpy",
33
"displayName": "Python Debugger",
44
"description": "Python Debugger extension using debugpy.",
5-
"version": "2025.7.0-dev",
5+
"version": "2025.8.0",
66
"publisher": "ms-python",
77
"enabledApiProposals": [
88
"portsAttributes",

src/extension/debugger/adapter/factory.ts

+1-1
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) <= 8)
184+
((interpreter.version?.major ?? 0) <= 3 && (interpreter.version?.minor ?? 0) <= 9)
185185
) {
186186
this.showDeprecatedPythonMessage();
187187
}

0 commit comments

Comments
 (0)