Skip to content

Commit e135ded

Browse files
authored
Merge pull request #3796 from felixonmars/patch-1
2 parents 7fad347 + fe96e8c commit e135ded

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hypothesis-python/docs/packaging.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ The organisation of the tests is described in the :gh-file:`hypothesis-python/te
7676
Examples
7777
--------
7878

79-
* `arch linux <https://archlinux.org/packages/community/any/python-hypothesis/>`_
79+
* `arch linux <https://archlinux.org/packages/extra/any/python-hypothesis/>`_
8080
* `fedora <https://src.fedoraproject.org/rpms/python-hypothesis>`_
8181
* `gentoo <https://packages.gentoo.org/packages/dev-python/hypothesis>`_

tooling/src/hypothesistooling/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def accept(fn):
4040
def wrapped(*args, **kwargs):
4141
if if_changed and tools.IS_PULL_REQUEST:
4242
if not tools.has_changes(if_changed + BUILD_FILES):
43-
changed = ", ".join(if_changed)
43+
changed = ", ".join(map(str, if_changed))
4444
print(f"Skipping task due to no changes in {changed}")
4545
return
4646
fn(*args, **kwargs)

0 commit comments

Comments
 (0)