From 9eb4b5186fbd9233d386a0cbb363fb03feb3546b Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Mon, 16 Feb 2026 17:31:00 +0000 Subject: [PATCH 1/4] Use verbose PyPI publish action --- .github/workflows/ci-build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 856efde..5aba691 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -74,3 +74,5 @@ jobs: - name: Publish distribution to PyPI uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0 + with: + verbose: true From 5e828f25c3d2bebac93b827311b270705178466c Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Mon, 16 Feb 2026 17:32:40 +0000 Subject: [PATCH 2/4] Use SPDX form of license --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9644098..d5d44c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ version = "2.1.1" requires-python = ">=3.10" description = "PDFTables.com Python API library." readme = "README.md" -license = { text = "Apache License 2.0" } +license = { text = "Apache-2.0" } keywords = ["pdf", "tables", "excel", "csv", "xml", "api"] authors = [ { name = "Cantabular Ltd", email = "hello@pdftables.com" } ] urls = { "Homepage" = "https://github.com/pdftables/python-pdftables-api" } From 37996763f632451f809e872a37adc3069fd64d2a Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Mon, 16 Feb 2026 17:32:48 +0000 Subject: [PATCH 3/4] Specify homepage and repository URLs --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d5d44c2..2ee7ca9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ readme = "README.md" license = { text = "Apache-2.0" } keywords = ["pdf", "tables", "excel", "csv", "xml", "api"] authors = [ { name = "Cantabular Ltd", email = "hello@pdftables.com" } ] -urls = { "Homepage" = "https://github.com/pdftables/python-pdftables-api" } +urls = { Homepage = "https://pdftables.com/api", Repository = "https://github.com/pdftables/python-pdftables-api.git" } dependencies = ["requests"] classifiers = [ "Development Status :: 5 - Production/Stable", From 1de29bae5d8ef2fa86a3a6e0df8b14a61f9bcd63 Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Mon, 16 Feb 2026 17:33:04 +0000 Subject: [PATCH 4/4] Update version to v2.1.2 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2ee7ca9..d2f3e2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pdftables-api" -version = "2.1.1" +version = "2.1.2" requires-python = ">=3.10" description = "PDFTables.com Python API library." readme = "README.md"