Skip to content

Commit 14e95a5

Browse files
authored
Merge branch 'main' into language-selectro
2 parents b19a07a + 63f67da commit 14e95a5

Some content is hidden

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

54 files changed

+11993
-4393
lines changed

.all-contributorsrc

Lines changed: 62 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"imageSize": 100,
66
"commit": false,
77
"commitConvention": "angular",
8+
"contributorsSortAlphabetically": true,
89
"contributors": [
910
{
1011
"login": "eriknw",
@@ -34,7 +35,9 @@
3435
"profile": "http://www.leahwasser.com",
3536
"contributions": [
3637
"doc",
37-
"design"
38+
"design",
39+
"ideas",
40+
"question"
3841
]
3942
},
4043
{
@@ -96,7 +99,9 @@
9699
"profile": "https://jon-e.net",
97100
"contributions": [
98101
"code",
99-
"design"
102+
"design",
103+
"ideas",
104+
"question"
100105
]
101106
},
102107
{
@@ -622,7 +627,9 @@
622627
"contributions": [
623628
"review",
624629
"code",
625-
"translation"
630+
"translation",
631+
"doc",
632+
"question"
626633
]
627634
},
628635
{
@@ -690,7 +697,8 @@
690697
"contributions": [
691698
"code",
692699
"review",
693-
"translation"
700+
"translation",
701+
"ideas"
694702
]
695703
},
696704
{
@@ -764,7 +772,8 @@
764772
"code",
765773
"review",
766774
"doc",
767-
"translation"
775+
"translation",
776+
"ideas"
768777
]
769778
},
770779
{
@@ -773,7 +782,8 @@
773782
"avatar_url": "https://avatars.githubusercontent.com/u/2680980?v=4",
774783
"profile": "https://hachyderm.io/web/@willingc",
775784
"contributions": [
776-
"review"
785+
"review",
786+
"ideas"
777787
]
778788
},
779789
{
@@ -785,6 +795,52 @@
785795
"review",
786796
"translation"
787797
]
798+
},
799+
{
800+
"login": "melissawm",
801+
"name": "Melissa Weber Mendonça",
802+
"avatar_url": "https://avatars.githubusercontent.com/u/3949932?v=4",
803+
"profile": "http://melissawm.github.io",
804+
"contributions": [
805+
"question"
806+
]
807+
},
808+
{
809+
"login": "OriolAbril",
810+
"name": "Oriol Abril-Pla",
811+
"avatar_url": "https://avatars.githubusercontent.com/u/23738400?v=4",
812+
"profile": "http://oriolabrilpla.cat",
813+
"contributions": [
814+
"question"
815+
]
816+
},
817+
{
818+
"login": "santisoler",
819+
"name": "Santiago Soler",
820+
"avatar_url": "https://avatars.githubusercontent.com/u/11541317?v=4",
821+
"profile": "https://www.santisoler.com",
822+
"contributions": [
823+
"code",
824+
"review"
825+
]
826+
},
827+
{
828+
"login": "webknjaz",
829+
"name": "🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко)",
830+
"avatar_url": "https://avatars.githubusercontent.com/u/578543?v=4",
831+
"profile": "https://webknjaz.me",
832+
"contributions": [
833+
"review"
834+
]
835+
},
836+
{
837+
"login": "jsdodge",
838+
"name": "J. Steven Dodge",
839+
"avatar_url": "https://avatars.githubusercontent.com/u/4602669?v=4",
840+
"profile": "https://www.sfu.ca/lux/author/j.-steven-dodge/",
841+
"contributions": [
842+
"code"
843+
]
788844
}
789845
],
790846
"contributorsPerLine": 7,

.github/dependabot.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "pip"
4+
directory: "/"
5+
insecure-external-code-execution: allow
6+
schedule:
7+
interval: "daily"
8+
open-pull-requests-limit: 100
9+
labels:
10+
- "maintenance"
11+
- "dependencies"
12+
groups:
13+
pip:
14+
patterns:
15+
- "*"
16+
commit-message:
17+
prefix: "chore"
18+
- package-ecosystem: "github-actions"
19+
directory: "/"
20+
schedule:
21+
interval: "daily"
22+
open-pull-requests-limit: 100
23+
labels:
24+
- "maintenance"
25+
- "dependencies"
26+
groups:
27+
actions:
28+
patterns:
29+
- "*"
30+
commit-message:
31+
prefix: "chore"

.github/workflows/build-book.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- name: Push to GitHub Pages
5757
# Only push if on main branch
5858
if: github.ref == 'refs/heads/main'
59-
uses: peaceiris/actions-gh-pages@v3.8.0
59+
uses: peaceiris/actions-gh-pages@v4.0.0
6060
with:
6161
github_token: ${{ secrets.GITHUB_TOKEN }}
6262
publish_dir: ./_build/html

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- name: Add issue to project
1313
id: add-to-project
14-
uses: actions/[email protected].1
14+
uses: actions/[email protected].2
1515
with:
1616
project-url: https://github.com/orgs/pyOpenSci/projects/3
1717
# This is a organization level token so it can be used across all repos in our org

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
repos:
1515
# Misc commit checks
1616
- repo: https://github.com/pre-commit/pre-commit-hooks
17-
rev: v4.6.0
17+
rev: v5.0.0
1818
# ref: https://github.com/pre-commit/pre-commit-hooks#hooks-available
1919
hooks:
2020
# Autoformat: Makes sure files end in a newline and only a newline.
@@ -25,7 +25,7 @@ repos:
2525
- id: trailing-whitespace
2626

2727
- repo: https://github.com/codespell-project/codespell
28-
rev: v2.3.0
28+
rev: v2.4.1
2929
hooks:
3030
- id: codespell
3131
additional_dependencies:
@@ -36,12 +36,12 @@ repos:
3636
)$
3737
3838
- repo: https://github.com/errata-ai/vale
39-
rev: v3.7.0
39+
rev: v3.11.2
4040
hooks:
4141
- id: vale
4242

43-
- repo: https://github.com/pre-commit/mirrors-prettier
44-
rev: v3.1.0
43+
- repo: https://github.com/rbubley/mirrors-prettier
44+
rev: v3.5.3
4545
hooks:
4646
- id: prettier
4747
types_or: [yaml, html, css, scss, javascript, json, toml]

.zenodo.json

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
"name": "Nicholson, David",
1111
"orcid": "0000-0002-4261-4719"
1212
},
13+
{
14+
"affiliation": "",
15+
"name": "Moreno, Felipe"
16+
},
1317
{
1418
"affiliation": "Hasso Plattner Institute",
1519
"name": "Sasso, Ariane",
@@ -47,6 +51,10 @@
4751
"name": "Smith, Trevor James",
4852
"orcid": "0000-0001-5393-8359"
4953
},
54+
{
55+
"affiliation": "Ansys",
56+
"name": "Pastor Muela, Roberto"
57+
},
5058
{
5159
"affiliation": "pyOpenSci",
5260
"name": "Mostipak, Jesse",
@@ -78,6 +86,20 @@
7886
"affiliation": "NVIDIA",
7987
"name": "Welch, Erik",
8088
"orcid": "0000-0003-3694-3783"
89+
},
90+
{
91+
"affiliation": "Alaska Satellite Facility, University of Alaska Fairbanks",
92+
"name": "Kennedy, Joseph H.",
93+
"orcid": "0000-0002-9348-693X"
94+
},
95+
{
96+
"affiliation": "Ansys",
97+
"name": "Venugopal, Revathy"
98+
},
99+
{
100+
"affiliation": "",
101+
"name": "Tetsuo, Koyama",
102+
"orcid": "0000-0001-9859-9565"
81103
}
82104
],
83105
"contributors": [
@@ -181,11 +203,6 @@
181203
"affiliation": "",
182204
"name": "Cranston, Karen"
183205
},
184-
{
185-
"type": "Other",
186-
"affiliation": "",
187-
"name": "Kennedy, Joseph H."
188-
},
189206
{
190207
"type": "Other",
191208
"affiliation": "",

0 commit comments

Comments
 (0)