From aeb1580c7744aa49de26d8e54025e2e8894d3586 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 26 Jun 2025 14:36:45 +0000 Subject: [PATCH 1/2] feat!: Drop support for Python 3.8 (eol 2024-10-07) Release-As: 1.0.0 Co-Authored-By: mkeeler@launchdarkly.com --- .github/workflows/ci.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0933179..d4c8b8f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.9 - name: Install poetry run: pipx install poetry diff --git a/pyproject.toml b/pyproject.toml index aa4a696..c244203 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = ["LaunchDarkly "] readme = "README.md" [tool.poetry.dependencies] -python = "^3.8" +python = "^3.9" launchdarkly-openfeature-server = "^0.2.0" From ab9d41b3247a46af6d21fa59d5c93ef13293b552 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 26 Jun 2025 14:41:14 +0000 Subject: [PATCH 2/2] fix: Add package-mode = false for demo app 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: mkeeler@launchdarkly.com --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index c244203..f47d72e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,7 @@ version = "0.1.0" description = "" authors = ["LaunchDarkly "] readme = "README.md" +package-mode = false [tool.poetry.dependencies] python = "^3.9"