Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions azure-pipelines/pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ stages:
py313:
python.version: 3.13
py314:
python.version: 3.14.0-rc.2
python.version: 3.14
py315:
python.version: 3.15.0-rc.1

steps:

Expand Down Expand Up @@ -177,7 +179,9 @@ stages:
py313:
python.version: 3.13
py314:
python.version: 3.14.0-rc.2
python.version: 3.14
py315:
python.version: 3.15.0-rc.1

steps:

Expand Down Expand Up @@ -220,7 +224,9 @@ stages:
py313:
python.version: 3.13
py314:
python.version: 3.14.0-rc.2
python.version: 3.14
py315:
python.version: 3.15.0-rc.1

steps:

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ def tail_is(*suffixes):
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Topic :: Software Development :: Debuggers",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ enum PythonVersion {
PythonVersion_312 = 0x030C,
PythonVersion_313 = 0x030D,
PythonVersion_314 = 0x030E,
PythonVersion_315 = 0x030F,
};


Expand Down Expand Up @@ -82,6 +83,9 @@ static PythonVersion GetPythonVersion(void *module) {
if(version[3] == '4'){
return PythonVersion_314;
}
if(version[3] == '5'){
return PythonVersion_315;
}
}
return PythonVersion_Unknown; // we don't care about 3.1 anymore...

Expand All @@ -99,4 +103,4 @@ static PythonVersion GetPythonVersion(void *module) {
return PythonVersion_Unknown;
}

#endif
#endif
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{310,311,312,313,314}{,-cov}
envlist = py{310,311,312,313,314,315}{,-cov}

[testenv]
deps = -rtests/requirements.txt
Expand All @@ -8,5 +8,5 @@ setenv =
DEBUGPY_TEST=1
commands_pre = python build_attach_binaries.py
commands =
py{310,311,312,313,314}-!cov: python -Xfrozen_modules=off -m pytest {posargs}
py{310,311,312,313,314}-cov: python -Xfrozen_modules=off -m pytest --cov --cov-append --cov-config=.coveragerc {posargs}
py{310,311,312,313,314,315}-!cov: python -Xfrozen_modules=off -m pytest {posargs}
py{310,311,312,313,314,315}-cov: python -Xfrozen_modules=off -m pytest --cov --cov-append --cov-config=.coveragerc {posargs}
Loading