Skip to content

Commit

Permalink
Merge pull request #782 from Debilski/feature/contributors
Browse files Browse the repository at this point in the history
  • Loading branch information
Debilski authored Oct 16, 2023
2 parents d0d0e9f + 38e9941 commit f0524d7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
deploy_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # fetch all history and tags (needed for git describe)
- name: Set up Python 3.12
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Build and publish Python distributions to PyPI and TestPyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python 3.12
uses: actions/setup-python@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
timeout-minutes: 15

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
timeout-minutes: 15

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down
3 changes: 1 addition & 2 deletions build-docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ CONTRIBUTORS=doc/source/_contributors.rst

echo "As of \`\`${git_describe}\`\` the developers and contributors are::" > $CONTRIBUTORS
echo "" >> $CONTRIBUTORS
git shortlog -sn | awk '{first = $1; $1 = " "; print $0; }' >> $CONTRIBUTORS
git shortlog -sn HEAD | awk '{first = $1; $1 = " "; print $0; }' >> $CONTRIBUTORS

(cd doc && make clean)
if ! (cd doc && make html) ; then
Expand All @@ -26,4 +26,3 @@ docdirectory=doc/build/html/
# Add a .nojekyll file
# This prevents the GitHub jekyll website generator from running
touch $docdirectory".nojekyll"

0 comments on commit f0524d7

Please sign in to comment.