fix: correct pyproject.toml configuration and bump version to 0.0.26#40
Merged
Conversation
- Fix ruff target-version from "0.0.25" to "py312" - Fix mypy python_version from "0.0.25" to "3.12" - Update aioresponses requirement to >=0.7.10 for aiohttp compatibility - Bump version to 0.0.26 https://claude.ai/code/session_01G2GsvMN2nSvSXpAaWXRUQj
There was a problem hiding this comment.
Code Review
This pull request updates the project configuration in pyproject.toml. It bumps the project version to 0.0.26, updates the aioresponses test dependency to >=0.7.10, and corrects the Ruff target-version and Mypy python_version settings to target Python 3.12 instead of the incorrect version string 0.0.25. There are no review comments, and I have no feedback to provide.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
aioresponses 0.7.10 does not exist. Use the latest available version 0.7.8 https://claude.ai/code/session_01G2GsvMN2nSvSXpAaWXRUQj
aioresponses 0.7.8 is not compatible with aiohttp 3.14+. Constrain aiohttp to <3.14 to use compatible versions. https://claude.ai/code/session_01G2GsvMN2nSvSXpAaWXRUQj
… 3.13+ Monkey-patch aiohttp.ClientResponse.__init__ to provide the stream_writer parameter that aioresponses 0.7.8 doesn't supply but newer aiohttp versions require. https://claude.ai/code/session_01G2GsvMN2nSvSXpAaWXRUQj
Reformat conftest.py to meet ruff's import sorting requirements. https://claude.ai/code/session_01G2GsvMN2nSvSXpAaWXRUQj
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
Fixed configuration errors in pyproject.toml that were causing CI failures:
target-versionfrom package version (0.0.25) to Python version (py312)python_versionfrom package version (0.0.25) to actual Python version (3.12)Test plan
Generated by Claude Code