From 2c61e165c00c7281e465f0ee85b4db473a57fe88 Mon Sep 17 00:00:00 2001 From: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> Date: Thu, 30 Jan 2025 12:40:38 +0100 Subject: [PATCH] Dropped benchmarks for Python 3.10 and 3.11 as no longer supported by Django. --- .github/workflows/benchmark.yml | 2 +- .github/workflows/publish-results.yml | 2 +- asv.conf.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index b1fa4a2c97..fbbe2e5d26 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.12' - name: Pull Changes if: github.event_name != 'pull_request' run: git pull origin diff --git a/.github/workflows/publish-results.yml b/.github/workflows/publish-results.yml index 352f9ced2a..9e630efeab 100644 --- a/.github/workflows/publish-results.yml +++ b/.github/workflows/publish-results.yml @@ -10,7 +10,7 @@ jobs: uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.12' - name: Install Requirements run: pip install -r requirements.txt - name: Git config diff --git a/asv.conf.json b/asv.conf.json index 4405d87d4a..8cd761d163 100644 --- a/asv.conf.json +++ b/asv.conf.json @@ -11,5 +11,5 @@ "environment_type": "conda", "conda_channels": ["conda-forge", "defaults"], "show_commit_url": "http://github.com/django/django/commit/", - "pythons": ["3.10", "3.11", "3.12", "3.13"] + "pythons": ["3.12", "3.13"] }