Skip to content

Commit 1020545

Browse files
chore(asm): update python version for threats tests (#11893)
Update the python version for threats tests, to include python 3.13 when available. ## Checklist - [x] PR author has checked that all the criteria below are met - The PR description includes an overview of the change - The PR description articulates the motivation for the change - The change includes tests OR the PR description describes a testing strategy - The PR description notes risks associated with the change, if any - Newly-added code is easy to change - The change follows the [library release note guidelines](https://ddtrace.readthedocs.io/en/stable/releasenotes.html) - The change includes or references documentation updates if necessary - Backport labels are set (if [applicable](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting)) ## Reviewer Checklist - [x] Reviewer has checked that all the criteria below are met - Title is accurate - All changes are related to the pull request's stated goal - Avoids breaking [API](https://ddtrace.readthedocs.io/en/stable/versioning.html#interfaces) changes - Testing strategy adequately addresses listed risks - Newly-added code is easy to change - Release note makes sense to a user of the library - If necessary, author has acknowledged and discussed the performance implications of this PR as reported in the benchmarks PR comment - Backport labels are set in a manner that is consistent with the [release branch maintenance policy](https://ddtrace.readthedocs.io/en/latest/contributing.html#backporting)
1 parent afe439e commit 1020545

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

hatch.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -214,23 +214,23 @@ test = [
214214
# if you add or remove a version here, please also update the parallelism parameter
215215
# in .circleci/config.templ.yml
216216
[[envs.appsec_threats_django.matrix]]
217-
python = ["3.7", "3.9"]
217+
python = ["3.8", "3.9"]
218218
django = ["~=2.2"]
219219

220220
[[envs.appsec_threats_django.matrix]]
221-
python = ["3.7", "3.9", "3.10"]
221+
python = ["3.8", "3.9", "3.10"]
222222
django = ["~=3.2"]
223223

224224
[[envs.appsec_threats_django.matrix]]
225225
python = ["3.8", "3.10"]
226226
django = ["==4.0.10"]
227227

228228
[[envs.appsec_threats_django.matrix]]
229-
python = ["3.8", "3.10", "3.12"]
229+
python = ["3.8", "3.11", "3.13"]
230230
django = ["~=4.2"]
231231

232232
[[envs.appsec_threats_django.matrix]]
233-
python = ["3.10", "3.12"]
233+
python = ["3.10", "3.13"]
234234
django = ["~=5.1"]
235235

236236

@@ -262,21 +262,21 @@ test = [
262262
# if you add or remove a version here, please also update the parallelism parameter
263263
# in .circleci/config.templ.yml
264264
[[envs.appsec_threats_flask.matrix]]
265-
python = ["3.7", "3.9"]
265+
python = ["3.8", "3.9"]
266266
flask = ["~=1.1"]
267267
markupsafe = ["~=1.1"]
268268

269269
[[envs.appsec_threats_flask.matrix]]
270-
python = ["3.7", "3.9"]
270+
python = ["3.8", "3.9"]
271271
flask = ["==2.1.3"]
272272
werkzeug = ["<3.0"]
273273

274274
[[envs.appsec_threats_flask.matrix]]
275-
python = ["3.8", "3.9", "3.12"]
275+
python = ["3.8", "3.10", "3.13"]
276276
flask = ["~=2.3"]
277277

278278
[[envs.appsec_threats_flask.matrix]]
279-
python = ["3.8", "3.10", "3.12"]
279+
python = ["3.8", "3.11", "3.13"]
280280
flask = ["~=3.0"]
281281

282282
## ASM Native IAST module
@@ -327,16 +327,16 @@ test = [
327327
# if you add or remove a version here, please also update the parallelism parameter
328328
# in .circleci/config.templ.yml
329329
[[envs.appsec_threats_fastapi.matrix]]
330-
python = ["3.7", "3.9", "3.11"]
330+
python = ["3.8", "3.10", "3.13"]
331331
fastapi = ["==0.86.0"]
332332
anyio = ["==3.7.1"]
333333

334334
[[envs.appsec_threats_fastapi.matrix]]
335-
python = ["3.7", "3.9", "3.12"]
335+
python = ["3.8", "3.10", "3.13"]
336336
fastapi = ["==0.94.1"]
337337

338338
[[envs.appsec_threats_fastapi.matrix]]
339-
python = ["3.8", "3.10", "3.12"]
339+
python = ["3.8", "3.10", "3.13"]
340340
fastapi = ["~=0.114.2"]
341341

342342

0 commit comments

Comments
 (0)