From 4603c5b7ad7ba70e316d289a5512653c5195a648 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Sun, 1 Oct 2023 22:28:48 +0200 Subject: [PATCH 1/3] CI: Add Dependabot configuration --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..1626cb6 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 + +updates: + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "monthly" From 48f723003f9d05075a7f1ed17b67a810a51e9d97 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Sun, 1 Oct 2023 22:29:07 +0200 Subject: [PATCH 2/3] Update changelog --- CHANGES.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 1d1fc9c..8261854 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -6,6 +6,8 @@ Changelog in progress =========== +- dialect postgresql+psycopg_relaxed does not support caching + 2023-03-22 0.1.0 ================ From f8b09856b22d9e36484fb2e4b60c664e9388e112 Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Sun, 1 Oct 2023 22:32:34 +0200 Subject: [PATCH 3/3] Update dependencies --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index bd85adb..833ddeb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,7 +58,7 @@ classifiers = [ dependencies = [ "asyncpg", "psycopg[binary]", - "sqlalchemy>=2", + "sqlalchemy<3,>=2", ] [project.optional-dependencies] develop = [ @@ -66,12 +66,12 @@ develop = [ "isort<6", "poethepoet<0.19", "proselint==0.13", - "pyproject-fmt<0.10", - "ruff==0.0.253", + "pyproject-fmt<1.2", + "ruff==0.0.291", "validate-pyproject<0.13", ] release = [ - "build<1", + "build<2", 'minibump<1; python_version >= "3.10"', "twine<5", ]