feat!: Drop support for Python 3.8 (eol 2024-10-07) #26
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Drop support for Python 3.8 (eol 2024-10-07)
Summary
This PR drops support for Python 3.8 across 6 LaunchDarkly Python repositories and adds support for Python 3.13, following the pattern established in launchdarkly/python-server-sdk.
Repositories updated:
Key changes:
Review & Testing Checklist for Human
make docsto ensure the major Sphinx upgrade (1.3.0 → 7.0.0) doesn't break existing functionalityDiagram
graph TD subgraph "Repository Changes" A[pyproject.toml]:::major-edit B[README.md]:::major-edit C[.github/workflows/*.yml]:::major-edit D[Makefile]:::context end subgraph "python-eventsource Specific" E[pyproject.toml - Sphinx upgrade]:::major-edit F[poetry.lock - ignored by git]:::context end subgraph "hello-openfeature-python-server" G[pyproject.toml - package-mode fix]:::minor-edit end A --> |Removes Python 3.8 classifiers| H[Python 3.9-3.13 support] A --> |Updates python version constraint| H B --> |Documents new version support| H C --> |Updates CI test matrix| H E --> |Sphinx ^1.3.0 to ^7.0.0| I[Python 3.13 compatibility] subgraph Legend L1[Major Edit]:::major-edit L2[Minor Edit]:::minor-edit L3[Context/No Edit]:::context end classDef major-edit fill:#90EE90 classDef minor-edit fill:#87CEEB classDef context fill:#FFFFFFNotes
pipesmodule that older Sphinx versions depended onLink to Devin run: https://app.devin.ai/sessions/3f70248c29dd4d5eb70be4a05a78ce3a
Requested by: @keelerm84