diff --git a/.circleci/config.yml b/.circleci/config.yml index d56d94b9..dd608d5e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,24 +1,24 @@ version: 2.1 orbs: - base: dialogue/base@1.26.2 - release: dialogue/release@2.23.0 - python: dialogue/python@3.30.0 - utils: dialogue/utils@3.22.2 + base: dialogue/base@1.27.0 + release: dialogue/release@2.24.0 + python: dialogue/python@3.33.0 + utils: dialogue/utils@3.23.0 codecov: codecov/codecov@4.1.0 aliases: - &executor executor: name: python/python - version: "3.12.5" + version: "3.13" executors: python-postgres: parameters: python_version: type: string - default: "3.12.5" + default: "3.13" docker: - image: cimg/python:<< parameters.python_version >> - image: postgres:16.4 @@ -45,7 +45,7 @@ workflows: context: code-validator matrix: parameters: - python_version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + python_version: ["3.10", "3.11", "3.12", "3.13", "3.14"] sqlalchemy_version: ["1.4", "2.0", "2.0-sqlmodel"] asyncpg: ["asyncpg", "noasyncpg"] aws_rds_iam: ["aws_rds_iam", "noaws_rds_iam"] @@ -81,7 +81,7 @@ jobs: parameters: python_version: type: enum - enum: ["3.9", "3.10", "3.11", "3.12", "3.13"] + enum: ["3.10", "3.11", "3.12", "3.13", "3.14"] description: | Specify which version of python to run the tests against sqlalchemy_version: diff --git a/poetry.lock b/poetry.lock index 8a16fe9c..8be10442 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1611,5 +1611,5 @@ sqlmodel = ["sqlmodel"] [metadata] lock-version = "2.0" -python-versions = ">=3.9,<3.14" -content-hash = "db1ca98a7a48dd962476d831b27cda01d646c778abc0b33b710c664a5dd108c5" +python-versions = ">=3.9,<3.15" +content-hash = "886db92db68bb368fd59e3a7abd62bff54c96e7ad594b0c321118db955047666" diff --git a/pyproject.toml b/pyproject.toml index 3e8a67c6..bf715ec9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ classifiers = [ ] [tool.poetry.dependencies] -python = ">=3.9,<3.14" +python = ">=3.9,<3.15" fastapi = ">=0.95.1,<0.121" pydantic = ">=1,<3" sqlalchemy = ">=1.3,<3"