-
Notifications
You must be signed in to change notification settings - Fork 8
Bump pytest version to 9 #420
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
Conversation
| "protobuf>=5", | ||
| "cel-python==0.2.*", | ||
| # We need at least this version, which started publishing wheels for Python 3.14. | ||
| # Ref: https://github.com/google/re2/issues/580 | ||
| "google-re2>=1.1.20251105; python_version == '3.14'", | ||
| # We need at least this version, which started publishing wheels for Python 3.13. | ||
| # Ref: https://github.com/google/re2/issues/516 | ||
| "google-re2>=1.1.20250722; python_version == '3.13'", | ||
| # 1.1 started supporting 3.12. | ||
| "google-re2>=1.1; python_version == '3.12'", | ||
| "google-re2>=1", | ||
| "protobuf>=5", | ||
| "cel-python==0.2.*", | ||
| # We need at least this version, which started publishing wheels for Python 3.14. | ||
| # Ref: https://github.com/google/re2/issues/580 | ||
| "google-re2>=1.1.20251105; python_version == '3.14'", | ||
| # We need at least this version, which started publishing wheels for Python 3.13. | ||
| # Ref: https://github.com/google/re2/issues/516 | ||
| "google-re2>=1.1.20250722; python_version == '3.13'", | ||
| # 1.1 started supporting 3.12. | ||
| "google-re2>=1.1; python_version == '3.12'", | ||
| "google-re2>=1", |
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.
we had some two space, four space, and tab indentation in this file; just making it all two spaces.
|
|
||
| [tool.pytest.ini_options] | ||
| [tool.pytest] | ||
| strict = true |
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.
enabling strict = true meant that the parameterization ids for the test changed above were not unique, so I switched those to use subtests instead.
Co-authored-by: Adrien <avannson@buf.build>
Ref: https://docs.pytest.org/en/stable/changelog.html#pytest-9-0-0-2025-11-05