fix(server): add httpx to runtime dependencies#205
Merged
abhinav-galileo merged 1 commit intomainfrom Apr 30, 2026
Merged
Conversation
httpx was listed only under [dependency-groups] dev, but the new auth_framework's HTTP-upstream provider imports httpx at module load time. Production wheels built without dev deps thus fail with ModuleNotFoundError on server start.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
namrataghadi-galileo
approved these changes
Apr 30, 2026
galileo-automation
pushed a commit
that referenced
this pull request
May 2, 2026
## [2.5.0](ts-sdk-v2.4.0...ts-sdk-v2.5.0) (2026-05-02) ### Features * **sdk-ts:** expose debug logger option ([66aba97](66aba97)) * **sdk:** add config driven sink selection ([#176](#176)) ([64c169f](64c169f)) * **server:** namespace scoping and control bindings ([#203](#203)) ([15ed4fd](15ed4fd)) * **server:** pluggable request-auth framework (management + runtime) ([#204](#204)) ([fae0ad3](fae0ad3)), closes [#203](#203) ### Bug Fixes * **server:** add httpx to runtime dependencies ([#205](#205)) ([b4dff6f](b4dff6f))
Collaborator
|
🎉 This PR is included in version 2.5.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
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.
Summary
httpxis listed only under[dependency-groups] dev, butserver/src/agent_control_server/auth_framework/providers/http_upstream.pyimportshttpxat module load time. Wheels built without dev dependencies therefore fail withModuleNotFoundError: No module named 'httpx'on server start.Reproduction
Build a production wheel (no dev deps) and start the server:
Fix
Add
"httpx>=0.27.0"to the runtimedependencieslist inserver/pyproject.toml. Existing dev-deps entry is unchanged.Test plan