Skip to content

Commit

Permalink
Merge pull request HypothesisWorks#3796 from felixonmars/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac-HD committed Nov 21, 2023
2 parents 7fad347 + fe96e8c commit e135ded
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hypothesis-python/docs/packaging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ The organisation of the tests is described in the :gh-file:`hypothesis-python/te
Examples
--------

* `arch linux <https://archlinux.org/packages/community/any/python-hypothesis/>`_
* `arch linux <https://archlinux.org/packages/extra/any/python-hypothesis/>`_
* `fedora <https://src.fedoraproject.org/rpms/python-hypothesis>`_
* `gentoo <https://packages.gentoo.org/packages/dev-python/hypothesis>`_
2 changes: 1 addition & 1 deletion tooling/src/hypothesistooling/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e135ded

Please sign in to comment.