-
Notifications
You must be signed in to change notification settings - Fork 141
chore(deps): update all dependencies #1302
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,30 +1,30 @@ | ||
| alembic==1.16.5; python_version >= '3.9' | ||
| certifi==2025.10.5 | ||
| charset-normalizer==3.4.3 | ||
| alembic==1.18.4; python_version >= '3.9' | ||
| certifi==2026.2.25 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The updated version for |
||
| charset-normalizer==3.4.5 | ||
| geoalchemy2===0.17.1; python_version == '3.9' | ||
| geoalchemy2==0.18.0; python_version >= '3.10' | ||
| google-api-core[grpc]==2.25.2 | ||
| google-auth==2.41.1 | ||
| google-cloud-bigquery==3.38.0; python_version >= '3.9' | ||
| google-cloud-core==2.4.3 | ||
| google-crc32c==1.7.1; python_version >= '3.9' | ||
| google-resumable-media==2.7.2 | ||
| googleapis-common-protos==1.70.0 | ||
| greenlet==3.2.4; python_version >= '3.9' | ||
| grpcio==1.75.1; python_version >= '3.9' | ||
| grpcio-status==1.75.1; python_version >= '3.9' | ||
| idna==3.10 | ||
| geoalchemy2==0.18.4; python_version >= '3.10' | ||
| google-api-core[grpc]==2.30.0 | ||
| google-auth==2.48.0 | ||
| google-cloud-bigquery==3.40.1; python_version >= '3.9' | ||
| google-cloud-core==2.5.0 | ||
| google-crc32c==1.8.0; python_version >= '3.9' | ||
| google-resumable-media==2.8.0 | ||
| googleapis-common-protos==1.72.0 | ||
| greenlet==3.3.2; python_version >= '3.9' | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The updated To fix this, you should restrict this version to Python 3.10+ and add a separate dependency for Python 3.9. For example: |
||
| grpcio==1.78.0; python_version >= '3.9' | ||
| grpcio-status==1.78.0; python_version >= '3.9' | ||
| idna==3.11 | ||
| importlib-resources==6.5.2; python_version >= '3.9' | ||
| mako==1.3.10; python_version >= '3.9' | ||
| markupsafe==3.0.3; python_version >= '3.9' | ||
| packaging==25.0 | ||
| proto-plus==1.26.1 | ||
| packaging==26.0 | ||
| proto-plus==1.27.1 | ||
| protobuf==6.32.1; python_version >= '3.9' | ||
| pyasn1==0.6.2 | ||
| pyasn1-modules==0.4.2 | ||
| pyparsing==3.2.5; python_version >= '3.9' | ||
| pyparsing==3.3.2; python_version >= '3.9' | ||
| python-dateutil==2.9.0.post0 | ||
| pytz==2025.2 | ||
| pytz==2026.1.post1 | ||
| requests==2.32.5 | ||
| rsa==4.9.1 | ||
| shapely===2.0.7; python_version <= '3.9' | ||
|
|
||
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.
The updated
iniconfigversion2.3.0drops support for Python 3.9, as per theiniconfig 2.2.0release notes. This project runs tests on Python 3.9, so this update will cause test failures on that Python version.To fix this, you should restrict this version to Python 3.10+ and add a separate dependency for Python 3.9, similar to how
clickis handled in this file. For example: