-
Notifications
You must be signed in to change notification settings - Fork 0
chore: Drop support for Python 3.8 (eol 2024-10-07) #7
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Release-As: 1.0.0 Co-Authored-By: [email protected] <[email protected]>
Contributor
Author
|
Original prompt from [email protected]: |
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
This resolves the Poetry installation error in CI where it couldn't find package files for the hello-openfeature-python-server demo application. Co-Authored-By: [email protected] <[email protected]>
keelerm84
approved these changes
Jun 26, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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) and add Python 3.13 support
Summary
This PR implements a coordinated update across 6 LaunchDarkly Python repositories to drop support for Python 3.8 (which reached end-of-life on October 7, 2024) and add support for Python 3.13. The changes follow the pattern established in the reference commit
02076650064d8a20f792c80cda3249a7aa7e336afrom python-server-sdk.Repositories updated:
Key changes per repository:
pyproject.tomlSpecial handling for python-eventsource:
package-mode = falseto hello-openfeature-python-server to resolve Poetry installation issuesReview & Testing Checklist for Human
Recommended test plan:
Diagram
graph TB subgraph "python-server-sdk-otel" A1[pyproject.toml]:::major-edit A2[README.md]:::major-edit A3[.github/workflows/ci.yml]:::major-edit A4[.github/workflows/manual-publish.yml]:::minor-edit end subgraph "python-server-sdk-ai" B1[pyproject.toml]:::major-edit B2[README.md]:::major-edit B3[.github/workflows/ci.yml]:::major-edit B4[.github/workflows/manual-publish.yml]:::minor-edit B5[.github/workflows/release-please.yml]:::minor-edit end subgraph "python-eventsource" C1[pyproject.toml]:::major-edit C2[README.md]:::major-edit C3[.github/workflows/ci.yml]:::major-edit C4[Sphinx upgrade 5.0→7.0]:::major-edit end subgraph "openfeature-python-server" D1[pyproject.toml]:::major-edit D2[README.md]:::major-edit D3[.github/workflows/ci.yml]:::major-edit D4[.github/workflows/manual-publish.yml]:::minor-edit end subgraph "hello-python" E1[pyproject.toml]:::major-edit E2[README.md]:::major-edit E3[.github/workflows/ci.yml]:::major-edit end subgraph "hello-openfeature-python-server" F1[pyproject.toml]:::major-edit F2[README.md]:::major-edit F3[.github/workflows/ci.yml]:::major-edit F4[package-mode fix]:::minor-edit end 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 was removed in Python 3.13.Link to Devin run: https://app.devin.ai/sessions/3f70248c29dd4d5eb70be4a05a78ce3a
Requested by: @keelerm84