-
Notifications
You must be signed in to change notification settings - Fork 344
feat: support Python 3.14 #1822
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
There is still no samples test for python 3.14, nor 3.13 |
|
Have added the 3.14 samples test, but still have unit tests to fix |
| google-auth==2.38.0 | ||
| pytest==7.1.2 | ||
| pytest===7.1.2; python_version <= '3.13' | ||
| pytest==8.4.2; python_version == '3.14' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this needed? Can we use 8.4.2 for all?
| http = aiohttp.ClientSession(auto_decompress=True) | ||
| with pytest.raises(ValueError): | ||
| aiohttp_requests.Request(http) | ||
| await aiohttp_requests.Request(http) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why were these tests changed to async?
No description provided.