Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 5 additions & 3 deletions poetry.lock

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

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readme = "README.md"
authors = []

[tool.poetry.dependencies]
python = ">=3.12,<4.0"
python = ">=3.12,<3.13"
click = "==8.1.8"
PyYAML = "==6.0.2"
fastapi = "==0.115.8"
Expand Down Expand Up @@ -57,11 +57,11 @@ generate-openapi = "src.codegate.server:generate_openapi"

[tool.black]
line-length = 100
target-version = ["py310"]
target-version = ["py312"]

[tool.ruff]
line-length = 100
target-version = "py310"
target-version = "py312"
fix = true
exclude = [
"src/codegate/db/queries.py", # Ignore auto-generated file from sqlc
Expand Down