-
Notifications
You must be signed in to change notification settings - Fork 172
chore(deps): update all dependencies #1763
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?
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,4 +1,4 @@ | ||
| pytest===7.4.4; python_version == '3.7' | ||
| pytest==8.3.5; python_version >= '3.8' | ||
| pytest==9.0.2; python_version >= '3.8' | ||
| mock==5.2.0 | ||
| backoff==2.2.1 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| google-cloud-pubsub==2.29.0 | ||
| google-cloud-storage==3.1.0 | ||
| google-cloud-pubsub==2.35.0 | ||
| google-cloud-storage==3.9.0 | ||
| pandas===1.3.5; python_version == '3.7' | ||
| pandas===2.0.3; python_version == '3.8' | ||
| pandas==2.2.3; python_version >= '3.9' | ||
| pandas==3.0.1; python_version >= '3.9' | ||
|
Contributor
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.
To maintain support for Python 3.9 and 3.10, you should add a line to continue using |
||
| opentelemetry-exporter-gcp-trace | ||
| opentelemetry-propagator-gcp | ||
| opentelemetry-instrumentation-requests | ||
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.
pytest9.x requires Python 3.10 or newer, but this line attempts to install it for Python 3.8 and 3.9 as well, which will cause your build to fail for those versions. You should restrict this version to Python 3.10+.To maintain support for older Python versions in your test matrix, you'll also need to add a line for
pytest8.x. Please add the following line before this one: