diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9abcfc5..995d5ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,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 uses: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439 diff --git a/README.md b/README.md index 1dec919..8c902d1 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ We've built a simple console application that demonstrates how LaunchDarkly's SD Below, you'll find the build procedure. For more comprehensive instructions, you can visit your [Quickstart page](https://app.launchdarkly.com/quickstart#/) or the [Python reference guide](https://docs.launchdarkly.com/sdk/server-side/python). -This demo requires Python 3.8 or higher. +This demo requires Python 3.9 or higher. ## Build instructions diff --git a/pyproject.toml b/pyproject.toml index debf5f2..d6865a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" readme = "README.md" [tool.poetry.dependencies] -python = "^3.8" +python = "^3.9" launchdarkly-server-sdk = ">=9.0.0" halo = ">=0.0.3"