From e41abfc9285a5cddd0973e78e33d776ccdb05938 Mon Sep 17 00:00:00 2001 From: "matthias.lotz" Date: Sun, 1 Jun 2025 15:28:30 +0200 Subject: [PATCH] revert pyproject.toml --- odoo_openupgrade_wizard/tools/tools_postgres.py | 1 + pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/odoo_openupgrade_wizard/tools/tools_postgres.py b/odoo_openupgrade_wizard/tools/tools_postgres.py index b63adb8..522c48f 100644 --- a/odoo_openupgrade_wizard/tools/tools_postgres.py +++ b/odoo_openupgrade_wizard/tools/tools_postgres.py @@ -102,6 +102,7 @@ def get_postgres_container(ctx): ctx.obj["env_folder_path"].absolute(): "/env/", }, detach=True, + # ports={"5432/tcp": 5432}, # <--- Port-Mapping hinzugefügt ) # TODO, improve me. # Postgres container doesn't seems available immediately. diff --git a/pyproject.toml b/pyproject.toml index 0998f64..2772efe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "odoo-openupgrade-wizard" -version = "1.3.2" +version = "1.3.0" description = "CLI tool to manage Odoo Major Upgrades" authors = [ {name = "Sylvain LE GAL", email = "sylvain.legal@grap.coop"}, @@ -63,7 +63,7 @@ safety = "*" pylint = "*" tox = "*" towncrier = "*" -debugpy = "*" + [build-system] requires = ["poetry-core>=1.0.0"]