Skip to content
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

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

jomcgi
Copy link
Contributor

@jomcgi jomcgi commented Apr 1, 2025

Description

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

Fixes open-telemetry/opentelemetry-python#4513

Type of change

Please delete options that are not relevant.

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

How Has This Been Tested?

  • Tested locally with tox
  • Tested in CI

Does This PR Require a Core Repo Change?

Checklist:

See contributing.md for styleguide, changelog guidelines, and more.

  • Followed the style guidelines of this project
  • Changelogs have been updated
  • Unit tests have been added
  • Documentation has been updated

@jomcgi jomcgi force-pushed the chore-4513/drop-py38-support branch from 26c0f26 to 71eb61e Compare April 1, 2025 20:49
Comment on lines +148 to 153
# 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",
]
Copy link
Contributor Author

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.

@jomcgi jomcgi force-pushed the chore-4513/drop-py38-support branch 2 times, most recently from fba15e8 to e2360f6 Compare April 1, 2025 22:44
tox.ini Outdated
Comment on lines 204 to 205
# excluded from pypy3 due to missing wheel
pypy3.10-test-exporter-prometheus-remote-write
Copy link
Contributor Author

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")
Copy link
Contributor Author

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.

@jomcgi jomcgi force-pushed the chore-4513/drop-py38-support branch from e2360f6 to 4f57fa3 Compare April 1, 2025 23:00
@jomcgi jomcgi force-pushed the chore-4513/drop-py38-support branch from 4f57fa3 to 415fb0c Compare April 4, 2025 08:33
@@ -168,6 +171,7 @@ select = [
"PLE", # pylint error
"Q", # flake8-quotes
"A", # flake8-builtins
"FA", # flake8-future-annotations
Copy link
Contributor Author

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"]
Copy link
Contributor Author

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.

@jomcgi jomcgi force-pushed the chore-4513/drop-py38-support branch from 415fb0c to 5e91bf0 Compare April 4, 2025 08:38
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
@jomcgi jomcgi force-pushed the chore-4513/drop-py38-support branch from 5e91bf0 to cbac8ca Compare April 4, 2025 09:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Drop support for Python 3.8