From 0d5db6b5815058cc779532000995c2e791bc55f0 Mon Sep 17 00:00:00 2001 From: twelfthlabor Date: Mon, 7 Sep 2026 01:08:25 -0600 Subject: [PATCH 1/3] Add Changelog project URL --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 452617496..31c048c5b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ classifiers = [ "Topic :: Software Development", "Topic :: Software Development :: Libraries :: Python Modules", ] -urls = { Homepage = "https://pgcli.com" } +urls = { Homepage = "https://pgcli.com", Changelog = "https://github.com/dbcli/pgcli/blob/main/changelog.rst" } requires-python = ">=3.10" dependencies = [ "pgspecial>=2.0.0", From 09d7a286570d0fb6a6f82692ea0181c33e3527a5 Mon Sep 17 00:00:00 2001 From: ramchaser <51999086+twelfthlabor@users.noreply.github.com> Date: Tue, 8 Sep 2026 21:51:52 -0400 Subject: [PATCH 2/3] Update pyproject.toml Co-authored-by: Damien Baty --- pyproject.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 31c048c5b..ff0eb1e38 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,11 @@ classifiers = [ "Topic :: Software Development", "Topic :: Software Development :: Libraries :: Python Modules", ] -urls = { Homepage = "https://pgcli.com", Changelog = "https://github.com/dbcli/pgcli/blob/main/changelog.rst" } +[project.urls] +Homepage = "https://pgcli.com" +Changelog = "https://github.com/dbcli/pgcli/blob/main/changelog.rst" +Repository = "https://github.com/dbcli/pgcli/" +Issues = "https://github.com/dbcli/pgcli/issues" requires-python = ">=3.10" dependencies = [ "pgspecial>=2.0.0", From cbdfd7a989d7fe66d7008720d3551a4c2ed769cd Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 9 Sep 2026 09:58:41 -0400 Subject: [PATCH 3/3] Fix placement of project URLs table --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ff0eb1e38..1f21e60ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,11 +20,6 @@ classifiers = [ "Topic :: Software Development", "Topic :: Software Development :: Libraries :: Python Modules", ] -[project.urls] -Homepage = "https://pgcli.com" -Changelog = "https://github.com/dbcli/pgcli/blob/main/changelog.rst" -Repository = "https://github.com/dbcli/pgcli/" -Issues = "https://github.com/dbcli/pgcli/issues" requires-python = ">=3.10" dependencies = [ "pgspecial>=2.0.0", @@ -48,6 +43,11 @@ dependencies = [ ] dynamic = ["version"] +[project.urls] +Homepage = "https://pgcli.com" +Changelog = "https://github.com/dbcli/pgcli/blob/main/changelog.rst" +Repository = "https://github.com/dbcli/pgcli/" +Issues = "https://github.com/dbcli/pgcli/issues" [project.scripts] pgcli = "pgcli.main:cli"