Skip to content
Open
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
8 changes: 5 additions & 3 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,20 @@ jobs:
runs-on: "ubuntu-latest"

strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]

steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v4"
- uses: "actions/checkout@v5"
- uses: "actions/setup-python@v6"
with:
python-version: "${{ matrix.python-version }}"
allow-prereleases: true
- name: "Install dependencies"
run: "scripts/install"
- name: "Run linting checks"
if: matrix.python-version != '3.8' && matrix.python-version != '3.9'
run: "scripts/check"
- name: "Build package & docs"
run: "scripts/build"
Expand Down
7 changes: 5 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,17 @@ coverage[toml]==7.5.4
ruff==0.5.0
mypy==1.10.1
trio-typing==0.10.0
pycparser==2.23 ; python_version >= "3.14"
pytest==8.2.2
pytest-httpbin==2.0.0
pytest-httpbin==2.1.0
pytest-trio==0.8.0
werkzeug<3.1 # See: https://github.com/psf/httpbin/issues/35

# Benchmarking and profiling
uvicorn==0.30.1
aiohttp==3.10.2
urllib3==2.2.2
matplotlib==3.7.5
matplotlib==3.7.5 ; python_version < "3.10"
matplotlib==3.10.7 ; python_version >= "3.10"
pyinstrument==4.6.2

4 changes: 2 additions & 2 deletions tests/benchmark/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
from typing import Any, Callable, Coroutine, Iterator, List

import aiohttp
import matplotlib.pyplot as plt # type: ignore[import-untyped]
import matplotlib.pyplot as plt
import pyinstrument
import urllib3
from matplotlib.axes import Axes # type: ignore[import-untyped]
from matplotlib.axes import Axes

import httpcore

Expand Down
Loading