Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
pull_request:
branches:
- main
schedule:
- cron: "0 7 * * 1"

jobs:
python-library:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "website-build-tools"
version = "0.1.12"
version = "0.1.13"
description = "tools for building websites, used by defelement.org and quadraturerules.org"
readme = "README.md"
requires-python = ">=3.10.0"
Expand Down
2 changes: 1 addition & 1 deletion webtools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Website building tools."""

__version__ = "0.1.12"
__version__ = "0.1.13"
4 changes: 2 additions & 2 deletions webtools/markup.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def list_contributors(format: str = "html") -> str:
if len(page) == 0:
break
for user in page:
if user.login not in included:
if user.login not in included and user.login != "github-actions[bot]":
extras.append((user.login, user.name))
i += 1
if len(extras) > 0:
Expand Down Expand Up @@ -260,7 +260,7 @@ def list_contributors(format: str = "html") -> str:
if len(page) == 0:
break
for user in page:
if user.login not in included:
if user.login not in included and user.login != "github-actions[bot]":
if format == "bibtex":
names.append("others")
else:
Expand Down
Loading