Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v7

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.13"

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ services:
- "host.docker.internal:host-gateway"

database:
image: postgres:17
image: postgres:18
restart: unless-stopped
ulimits:
nofile:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["hatchling>=1.25"]
requires = ["hatchling>=1.29.0"]
build-backend = "hatchling.build"

[project]
Expand All @@ -9,7 +9,7 @@ description = "Workspace assembly tooling for tenant-focused Odoo development"
requires-python = ">=3.13"
dependencies = [
"passlib>=1.7.4",
"pydantic>=2.11.0",
"pydantic>=2.13.2",
"pydantic-settings>=2.10.0",
"requests>=2.32.0",
]
Expand Down
Loading