From c50743e66c66f703cebdc8f83d76c23f73d5ad94 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Tue, 17 Dec 2024 08:23:28 -0800 Subject: [PATCH] Relaxed version restrictions on httpx --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 50ddee3..731ae50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +### Fixed + +- Relaxed version restriction on `httpx` + ## [0.8.0] - 2024-12-11 ### Breaking Change diff --git a/pyproject.toml b/pyproject.toml index 97bd434..2963ed3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ classifiers = [ ] dynamic = [ "version" ] dependencies = [ - "httpx[http2]~=0.28", + "httpx[http2]>=0.27", "typing-extensions; python_version<'3.11'", ]