-
Notifications
You must be signed in to change notification settings - Fork 678
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
[WIP] Chore: Drop support for Python 3.8 #3399
base: main
Are you sure you want to change the base?
Conversation
...us-remote-write/src/opentelemetry/exporter/prometheus_remote_write/gen/gogoproto/gogo_pb2.py
Outdated
Show resolved
Hide resolved
26c0f26
to
71eb61e
Compare
# Starlette instrumentation is pinned to <0.15 from 2021-06-23 | ||
# This creates a dependency conflict with instrumentation-genai/opentelemetry-instrumentation-google-genai | ||
# TODO: remove exclusion when #3317 is resolved. | ||
exclude = [ | ||
"instrumentation-genai/opentelemetry-instrumentation-google-genai", | ||
"instrumentation/opentelemetry-instrumentation-starlette", | ||
] |
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.
I think flipping this exclusion makes more sense given how outdated the starlette instrumentation is.
fba15e8
to
e2360f6
Compare
tox.ini
Outdated
# excluded from pypy3 due to missing wheel | ||
pypy3.10-test-exporter-prometheus-remote-write |
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.
pypy3.9 is missing a wheel for cramjam causing this test to fail, if we feel it's necessary we could reopen milesgranger/cramjam#185
op.operation_name(): op | ||
for op in globals().values() | ||
if inspect.isclass(op) | ||
and hasattr(op, "operation_name") |
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.
This condition was added here, lmdb.py
and sns.py
to resolve a test failure where inspect.isclass(op)
returned true but issubclass(op, ...
failed due to a value from globals not being recognized as a class.
e2360f6
to
4f57fa3
Compare
...pentelemetry-instrumentation-boto3sqs/src/opentelemetry/instrumentation/boto3sqs/__init__.py
Outdated
Show resolved
Hide resolved
4f57fa3
to
415fb0c
Compare
@@ -168,6 +171,7 @@ select = [ | |||
"PLE", # pylint error | |||
"Q", # flake8-quotes | |||
"A", # flake8-builtins | |||
"FA", # flake8-future-annotations |
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.
Added ruff lint rule that flags syntax that could be improved by future annotations
@@ -186,13 +190,15 @@ known-third-party = [ | |||
"redis_opentracing", | |||
"opencensus", | |||
] | |||
required-imports = ["from __future__ import annotations"] |
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.
Added isort rule that makes future annotations a required/automatic import.
This can be removed when future annotations is deprecated in a future python upgrade.
415fb0c
to
5e91bf0
Compare
Python 3.8 was EoL @ 2024-10-07, our 6 month promise for support will end @ 2024-04-07. Changes: * Removed all 3.8 references, updated basline refs to 3.9 * Updated python syntax with pyupgrade * Added isort rule to force future annotations import * Added ruff rule that enforces the use of future syntax
5e91bf0
to
cbac8ca
Compare
Description
Python 3.8 was EoL @ 2024-10-07, our 6 month promise for support will end @ 2024-04-07.
Changes:
Fixes open-telemetry/opentelemetry-python#4513
Type of change
Please delete options that are not relevant.
How Has This Been Tested?
Does This PR Require a Core Repo Change?
Checklist:
See contributing.md for styleguide, changelog guidelines, and more.