Skip to content

Commit a299ea9

Browse files
committed
Bump httpx to most recent version
1 parent b5cfa82 commit a299ea9

File tree

3 files changed

+275
-267
lines changed

3 files changed

+275
-267
lines changed

.github/workflows/shared.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
strategy:
3737
matrix:
3838
python-version: ["3.10", "3.11", "3.12", "3.13"]
39+
dep-resolution: ["lowest-direct", "highest"]
3940
os: [ubuntu-latest, windows-latest]
4041

4142
steps:
@@ -48,18 +49,11 @@ jobs:
4849
version: 0.7.2
4950

5051
- name: Install the project
51-
run: uv sync --frozen --all-extras --python ${{ matrix.python-version }}
52+
run: uv sync --frozen --all-extras --python ${{ matrix.python-version }} --resolution $${{ matrix.dep-resolution }}
5253

5354
- name: Run pytest
5455
run: uv run --frozen --no-sync pytest
5556

56-
# This must run last as it modifies the environment!
57-
- name: Run pytest with lowest versions
58-
run: |
59-
uv sync --all-extras --upgrade
60-
uv run --no-sync pytest
61-
env:
62-
UV_RESOLUTION: lowest-direct
6357
readme-snippets:
6458
runs-on: ubuntu-latest
6559
steps:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ classifiers = [
2323
]
2424
dependencies = [
2525
"anyio>=4.5",
26-
"httpx>=0.27",
26+
"httpx>=0.27.1",
2727
"httpx-sse>=0.4",
2828
"pydantic>=2.11.0,<3.0.0",
2929
"starlette>=0.27",

0 commit comments

Comments
 (0)