Skip to content

Commit a29afdf

Browse files
committed
Test aiohttp on 3.13
1 parent dce589c commit a29afdf

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/test-integrations-web-frameworks-2.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
fail-fast: false
2929
matrix:
30-
python-version: ["3.6","3.7","3.8","3.11","3.12"]
30+
python-version: ["3.6","3.7","3.8","3.11","3.12","3.13"]
3131
# python3.6 reached EOL and is no longer being supported on
3232
# new versions of hosted runners on Github Actions
3333
# ubuntu-20.04 is the last version that supported python3.6
@@ -86,13 +86,13 @@ jobs:
8686
set -x # print commands that are executed
8787
./scripts/runtox.sh "py${{ matrix.python-version }}-tornado-latest"
8888
- name: Generate coverage XML (Python 3.6)
89-
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
89+
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
9090
run: |
9191
export COVERAGE_RCFILE=.coveragerc36
9292
coverage combine .coverage-sentry-*
9393
coverage xml --ignore-errors
9494
- name: Generate coverage XML
95-
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
95+
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
9696
run: |
9797
coverage combine .coverage-sentry-*
9898
coverage xml
@@ -103,7 +103,7 @@ jobs:
103103
token: ${{ secrets.CODECOV_TOKEN }}
104104
files: coverage.xml
105105
# make sure no plugins alter our coverage reports
106-
plugin: noop
106+
plugin: noop
107107
verbose: true
108108
- name: Upload test results to Codecov
109109
if: ${{ !cancelled() }}
@@ -178,13 +178,13 @@ jobs:
178178
set -x # print commands that are executed
179179
./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-tornado"
180180
- name: Generate coverage XML (Python 3.6)
181-
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
181+
if: ${{ !cancelled() && matrix.python-version == '3.6' }}
182182
run: |
183183
export COVERAGE_RCFILE=.coveragerc36
184184
coverage combine .coverage-sentry-*
185185
coverage xml --ignore-errors
186186
- name: Generate coverage XML
187-
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
187+
if: ${{ !cancelled() && matrix.python-version != '3.6' }}
188188
run: |
189189
coverage combine .coverage-sentry-*
190190
coverage xml
@@ -195,7 +195,7 @@ jobs:
195195
token: ${{ secrets.CODECOV_TOKEN }}
196196
files: coverage.xml
197197
# make sure no plugins alter our coverage reports
198-
plugin: noop
198+
plugin: noop
199199
verbose: true
200200
- name: Upload test results to Codecov
201201
if: ${{ !cancelled() }}

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ envlist =
3030
# AIOHTTP
3131
{py3.7}-aiohttp-v{3.4}
3232
{py3.7,py3.9,py3.11}-aiohttp-v{3.8}
33-
{py3.8,py3.11,py3.12}-aiohttp-latest
33+
{py3.8,py3.11,py3.12,py3.13}-aiohttp-latest
3434

3535
# Anthropic
3636
{py3.7,py3.11,py3.12}-anthropic-v{0.16,0.25}

0 commit comments

Comments
 (0)