chore(deps): bump httpx>=0.28.1 and anthropic>=0.40.0#22
Merged
Conversation
httpx<0.28 blocked dana-agent[langsmith]'s websockets>=15 in a single uv workspace. anthropic==0.30.1 caps httpx<0.28, so the two must move together: anthropic -> >=0.40.0 (first release supporting httpx 0.28.x; the API surface dana uses is stable through 0.116). - requires-python: >=3.12 -> >=3.11,<3.14 - llama-stack gated with python_version>='3.12' marker (needs >=3.12) so [local] resolves on 3.11 (ollama-only) Validated via live provider tests; no new unit-test regressions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
httpx<0.28blockeddana-agent[langsmith]'swebsockets>=15requirement in a single uv workspace — the resolver could not satisfy both.anthropic==0.30.1capshttpx<0.28, so httpx and anthropic must move together: bumping one without the other breaks resolution and imports.Changes
>=0.27.0,<0.28.0>=0.28.1==0.30.1>=0.40.0>=0.3.0>=0.3.0; python_version>='3.12'>=3.12>=3.11,<3.14anthropic>=0.40.0is the first release supporting httpx 0.28.x. The API surface dana uses (AsyncAnthropic,messages.create/stream, content/usage blocks,APITimeoutError/BadRequestError) is stable 0.30 → 0.116, so the bump is API-safe.llama-stackrequires Python ≥3.12; the marker keeps[local]resolvable on 3.11 (ollama-only) while the lockfile now spans 3.11–3.13.Validation
.env; not a code issue.)TestOpenAIReasoningTokensfailures are unrelated (Responses-API code/test drift, fix already on develop as1c22655).