Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to remove 3.9 because the matrix ends up generating too many jobs, and hits the CI limit

sqlalchemy_version: ["1.4", "2.0", "2.0-sqlmodel"]
asyncpg: ["asyncpg", "noasyncpg"]
aws_rds_iam: ["aws_rds_iam", "noaws_rds_iam"]
Expand Down Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down