Skip to content

Commit d119cec

Browse files
authored
Merge branch 'main' into fix-contributor-name
2 parents 72ccfd2 + e51dc28 commit d119cec

File tree

84 files changed

+2563
-517
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+2563
-517
lines changed

.all-contributorsrc

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,26 @@
383383
"code",
384384
"review"
385385
]
386+
},
387+
{
388+
"login": "jonkiparsky",
389+
"name": "Jon Kiparsky",
390+
"avatar_url": "https://avatars.githubusercontent.com/u/5283553?v=4",
391+
"profile": "https://github.com/jonkiparsky",
392+
"contributions": [
393+
"bug",
394+
"ideas"
395+
]
396+
},
397+
{
398+
"login": "tracykteal",
399+
"name": "Tracy Teal",
400+
"avatar_url": "https://avatars.githubusercontent.com/u/889238?v=4",
401+
"profile": "https://github.com/tracykteal",
402+
"contributions": [
403+
"review",
404+
"ideas"
405+
]
386406
}
387407
],
388408
"commitConvention": "angular",

.github/workflows/build-site.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Check links with lychee
3636
id: lychee
37-
uses: lycheeverse/lychee-action@v1.10.0
37+
uses: lycheeverse/lychee-action@v2.0.2
3838
with:
3939
fail: true
4040
args: --verbose --no-progress _site/*.html

.github/workflows/linkcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
- name: Link Checker
2222
id: lychee
23-
uses: lycheeverse/lychee-action@v1.10.0
23+
uses: lycheeverse/lychee-action@v2.0.2
2424
with:
2525
args: --verbose --no-progress _site/*.html
2626
env:

.github/workflows/update-all-review-data.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
extra_args: --files _data/packages.yml _data/contributors.yml
3232
- name: Create Pull Request
33-
uses: peter-evans/create-pull-request@v6
33+
uses: peter-evans/create-pull-request@v7
3434
with:
3535
add-paths: |
3636
_data/contributors.yml

.github/workflows/update-contribs-reviews.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: pre-commit/[email protected]
3434
continue-on-error: true
3535
- name: Create Pull Request
36-
uses: peter-evans/create-pull-request@v6
36+
uses: peter-evans/create-pull-request@v7
3737
with:
3838
add-paths: |
3939
_data/contributors.yml

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ all_contribs.pickle
1111
styles/*
1212
tmp/*
1313
.bundle
14+
**/.ipynb_checkpoints/

.pre-commit-config.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ci:
2222
repos:
2323
# Misc commit checks
2424
- repo: https://github.com/pre-commit/pre-commit-hooks
25-
rev: v4.6.0
25+
rev: v5.0.0
2626
# ref: https://github.com/pre-commit/pre-commit-hooks#hooks-available
2727
hooks:
2828
# Autoformat: Makes sure files end in a newline and only a newline.
@@ -40,3 +40,9 @@ repos:
4040
- yaml
4141
additional_dependencies:
4242
- tomli
43+
44+
# - repo: https://github.com/pre-commit/mirrors-prettier
45+
# rev: v3.1.0
46+
# hooks:
47+
# - id: prettier
48+
# types_or: [yaml]

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/page__date.html

CONTRIBUTING.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,32 @@
55
If you are interested in contributing to pyOpenSci, please read about
66
how we work in [**pyOpenSci's organization-wide contributing guide**](https://www.pyopensci.org/handbook/CONTRIBUTING.html).
77

8-
## Repositories
8+
## Updating blog posts
9+
10+
Recently we added a bash script called: `scripts/date-updated.sh`. This script
11+
will run through all posts in the `_posts/` directory and add the date that it was
12+
last updated using your local git commit history. It will only update the date_update
13+
yaml key if the `last_updated:` yaml key exists in the page's front matter.
14+
15+
Right now
16+
it is a manual process to add `last_updated:` to all of our posts as a key.
17+
18+
You have to run the bash script at the command line, in the root of
19+
this repository.
20+
21+
You may have to update the permissions
22+
to allow it to modify files like this:
23+
24+
25+
`chmod +x scripts/date-updated.sh`
26+
27+
then you can run the script:
28+
29+
`./scripts/date-updated.sh`
30+
31+
In the future we will add this step to our CI build.
32+
33+
## Contributing to other pyOpenSci GitHub Repositories
934

1035
If you are interested in contributing to a specific repository, please review
1136
the `README.md` and `CONTRIBUTING.md` files in the repository. If you have any

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# pyopensci.github.io
22
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
3-
[![All Contributors](https://img.shields.io/badge/all_contributors-34-orange.svg?style=flat-square)](#contributors-)
3+
[![All Contributors](https://img.shields.io/badge/all_contributors-36-orange.svg?style=flat-square)](#contributors-)
44
<!-- ALL-CONTRIBUTORS-BADGE:END -->
55
[![pages-build-deployment](https://github.com/pyOpenSci/pyopensci.github.io/actions/workflows/pages/pages-build-deployment/badge.svg)](https://github.com/pyOpenSci/pyopensci.github.io/actions/workflows/pages/pages-build-deployment)
66
[![DOI](https://zenodo.org/badge/174412809.svg)](https://zenodo.org/doi/10.5281/zenodo.10594115)
@@ -95,6 +95,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
9595
<td align="center" valign="top" width="14.28%"><a href="http://g4brielvs.me"><img src="https://avatars.githubusercontent.com/u/4053416?v=4?s=100" width="100px;" alt="Gabriel Stefanini Vicente"/><br /><sub><b>Gabriel Stefanini Vicente</b></sub></a><br /><a href="https://github.com/pyOpenSci/pyopensci.github.io/commits?author=g4brielvs" title="Code">💻</a> <a href="https://github.com/pyOpenSci/pyopensci.github.io/pulls?q=is%3Apr+reviewed-by%3Ag4brielvs" title="Reviewed Pull Requests">👀</a></td>
9696
<td align="center" valign="top" width="14.28%"><a href="https://github.com/SeanAverS"><img src="https://avatars.githubusercontent.com/u/110581427?v=4?s=100" width="100px;" alt="SeanAverS"/><br /><sub><b>SeanAverS</b></sub></a><br /><a href="https://github.com/pyOpenSci/pyopensci.github.io/commits?author=SeanAverS" title="Code">💻</a> <a href="https://github.com/pyOpenSci/pyopensci.github.io/pulls?q=is%3Apr+reviewed-by%3ASeanAverS" title="Reviewed Pull Requests">👀</a></td>
9797
<td align="center" valign="top" width="14.28%"><a href="https://github.com/ayhanxian"><img src="https://avatars.githubusercontent.com/u/20816603?v=4?s=100" width="100px;" alt="Han"/><br /><sub><b>Han</b></sub></a><br /><a href="https://github.com/pyOpenSci/pyopensci.github.io/commits?author=ayhanxian" title="Code">💻</a> <a href="https://github.com/pyOpenSci/pyopensci.github.io/pulls?q=is%3Apr+reviewed-by%3Aayhanxian" title="Reviewed Pull Requests">👀</a></td>
98+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jonkiparsky"><img src="https://avatars.githubusercontent.com/u/5283553?v=4?s=100" width="100px;" alt="Jon Kiparsky"/><br /><sub><b>Jon Kiparsky</b></sub></a><br /><a href="https://github.com/pyOpenSci/pyopensci.github.io/issues?q=author%3Ajonkiparsky" title="Bug reports">🐛</a> <a href="#ideas-jonkiparsky" title="Ideas, Planning, & Feedback">🤔</a></td>
99+
</tr>
100+
<tr>
101+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/tracykteal"><img src="https://avatars.githubusercontent.com/u/889238?v=4?s=100" width="100px;" alt="Tracy Teal"/><br /><sub><b>Tracy Teal</b></sub></a><br /><a href="https://github.com/pyOpenSci/pyopensci.github.io/pulls?q=is%3Apr+reviewed-by%3Atracykteal" title="Reviewed Pull Requests">👀</a> <a href="#ideas-tracykteal" title="Ideas, Planning, & Feedback">🤔</a></td>
98102
</tr>
99103
</tbody>
100104
</table>

0 commit comments

Comments
 (0)