From 45101a219e2a48b10e1551c8f6ba19800045480f Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Tue, 21 Nov 2023 10:28:36 +0200 Subject: [PATCH 1/2] Update Arch Linux package URL in packaging.rst The old URL returns 404 now. --- hypothesis-python/docs/packaging.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypothesis-python/docs/packaging.rst b/hypothesis-python/docs/packaging.rst index 1aff697c4f..f9442c24ee 100644 --- a/hypothesis-python/docs/packaging.rst +++ b/hypothesis-python/docs/packaging.rst @@ -76,6 +76,6 @@ The organisation of the tests is described in the :gh-file:`hypothesis-python/te Examples -------- -* `arch linux `_ +* `arch linux `_ * `fedora `_ * `gentoo `_ From fe96e8c875e0e9a753ab18574147a8a248ed2bd1 Mon Sep 17 00:00:00 2001 From: Zac Hatfield-Dodds Date: Tue, 21 Nov 2023 10:48:41 -0500 Subject: [PATCH 2/2] fix skipping logic --- tooling/src/hypothesistooling/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tooling/src/hypothesistooling/__main__.py b/tooling/src/hypothesistooling/__main__.py index 84e6caf818..5087fff150 100644 --- a/tooling/src/hypothesistooling/__main__.py +++ b/tooling/src/hypothesistooling/__main__.py @@ -40,7 +40,7 @@ def accept(fn): def wrapped(*args, **kwargs): if if_changed and tools.IS_PULL_REQUEST: if not tools.has_changes(if_changed + BUILD_FILES): - changed = ", ".join(if_changed) + changed = ", ".join(map(str, if_changed)) print(f"Skipping task due to no changes in {changed}") return fn(*args, **kwargs)