From 28b05e6fc929c078ca208d02d4d6c50598ddf34a Mon Sep 17 00:00:00 2001 From: Andrii Balitskyi <10balian10@gmail.com> Date: Thu, 10 Apr 2025 13:59:15 +0200 Subject: [PATCH] Drop support for Python 3.9 due to EoL --- .github/workflows/check.yml | 3 --- poetry.lock | 7 +++---- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index eeaf80b0..2ccef266 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -20,7 +20,6 @@ jobs: os: - ubuntu-latest python: - - '3.9' - '3.10' - '3.11' - '3.12' @@ -70,7 +69,6 @@ jobs: os: - ubuntu-latest python: - - '3.9' - '3.10' - '3.11' - '3.12' @@ -88,7 +86,6 @@ jobs: os: - ubuntu-latest python: - - '3.9' - '3.10' - '3.11' - '3.12' diff --git a/poetry.lock b/poetry.lock index 55d15b0b..273d8766 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.8.2 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. [[package]] name = "annotated-types" @@ -877,7 +877,6 @@ mccabe = ">=0.6,<0.8" platformdirs = ">=2.2.0" tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} tomlkit = ">=0.10.1" -typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\""} [package.extras] spelling = ["pyenchant (>=3.2,<4.0)"] @@ -1477,5 +1476,5 @@ files = [ [metadata] lock-version = "2.0" -python-versions = "^3.9.0" -content-hash = "3b384d360423e3e74524ff901efc96a67837a9e808f3ce9565e3ac4fcb7a9cc4" +python-versions = "^3.10.0" +content-hash = "fd2519084b0d659169ef9a16e040e029f73e53d1daf6c71a57bfba2aaaa5bf34" diff --git a/pyproject.toml b/pyproject.toml index 5c6dac8c..213d309e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ repository = "https://github.com/seamapi/python" exclude = ["**/*_test.py"] [tool.poetry.dependencies] -python = "^3.9.0" +python = "^3.10.0" dataclasses-json = "^0.6.4" niquests = "^3.6.4" svix = "^1.24.0"