From 7698d0429bf9dd20b06e1e682284a94711316201 Mon Sep 17 00:00:00 2001 From: tristanlatr <19967168+tristanlatr@users.noreply.github.com> Date: Fri, 13 Jun 2025 14:21:00 -0400 Subject: [PATCH 1/4] Test the release process --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 9a28e31f..8423be9d 100644 --- a/setup.py +++ b/setup.py @@ -89,7 +89,7 @@ def launch_http_server(directory): setup( name="ConfigArgParse", - version="1.7.1", + version="1.7.2.dev0", description="A drop-in replacement for argparse that allows options to " "also be set via config files and/or environment variables.", long_description=long_description, From dd74a072a313a89492ef63f62e658f06cf9fbb92 Mon Sep 17 00:00:00 2001 From: bw2 Date: Tue, 5 Aug 2025 21:42:28 -0400 Subject: [PATCH 2/4] Allow docs generation action to push to gh-pages --- .github/workflows/apidocs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/apidocs.yml b/.github/workflows/apidocs.yml index b8f6a04d..88dfbcf2 100644 --- a/.github/workflows/apidocs.yml +++ b/.github/workflows/apidocs.yml @@ -9,6 +9,9 @@ on: jobs: deploy: runs-on: macos-latest + permissions: + contents: read + pages: write steps: - uses: actions/checkout@master From 5604f9d1907fd72dbebeaeef87cc4c31a9949ed5 Mon Sep 17 00:00:00 2001 From: Ben Weisburd Date: Tue, 5 Aug 2025 21:44:34 -0400 Subject: [PATCH 3/4] Update .github/workflows/apidocs.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/apidocs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/apidocs.yml b/.github/workflows/apidocs.yml index 88dfbcf2..1e494985 100644 --- a/.github/workflows/apidocs.yml +++ b/.github/workflows/apidocs.yml @@ -12,6 +12,7 @@ jobs: permissions: contents: read pages: write + id-token: write steps: - uses: actions/checkout@master From 17bbee81bc0f67388a1f7a2766dc90966961ede7 Mon Sep 17 00:00:00 2001 From: bw2 Date: Tue, 5 Aug 2025 21:47:07 -0400 Subject: [PATCH 4/4] revert change to version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 17de4a09..45102607 100644 --- a/setup.py +++ b/setup.py @@ -93,7 +93,7 @@ def launch_http_server(directory): setup( name="ConfigArgParse", - version="1.7.2.dev0", + version="1.7.1", description="A drop-in replacement for argparse that allows options to " "also be set via config files and/or environment variables.", long_description=long_description,