Skip to content

Commit

Permalink
Merge pull request #48 from pybamm-team/gsoc-2023-agriya-khetarpal
Browse files Browse the repository at this point in the history
GSoC 2023 Work Product Submission (Agriya Khetarpal)
  • Loading branch information
agriyakhetarpal authored Aug 27, 2023
2 parents 08078fc + dbda330 commit df9a549
Show file tree
Hide file tree
Showing 10 changed files with 224 additions and 18 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/teams.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ jobs:
run: |
pip install pre-commit
pre-commit run --all-files
# pre-commit will exit with a non-zero exit code due to trailing whitespaces
# and then fix those changes too. Therefore we want this step to pass regardless
continue-on-error: true
# Will exit silently if there are no changes
- name: Create pull request
Expand Down
12 changes: 7 additions & 5 deletions assets/css/overrides.css
Original file line number Diff line number Diff line change
Expand Up @@ -143,14 +143,16 @@ to near-parity with NumPy and SciPy websites (which use older versions of the th

/* Animations */

a {
a, a:hover, a:active {
transition: color 0.25s ease-in-out;
}

a:hover {
transition: color 0.25s ease-in-out;
/* Adjustments for headings */

.content-container h2, .content-container h3, .content-container h4, .content-container h5, .content-container h6 {
margin-top: 0.75rem;
}

a:active {
transition: color 0.25s ease-in-out;
.title:not(.is-spaced) + .subtitle {
margin-top: -0.2rem;
}
File renamed without changes.
213 changes: 213 additions & 0 deletions content/gsoc/2023/agriya-khetarpal.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content/gsoc/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ the _redirects file and a corresponding entry in netlify.toml. -->

### GSoC 2023

- Agriya Khetarpal
- [Agriya Khetarpal](/gsoc/2023/agriya-khetarpal/)
- Arjun Verma
- Julian Evers
8 changes: 3 additions & 5 deletions scripts/generate_teams.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,8 @@ def get_contributors():
if contributor["login"] not in PYBAMM_MAINTAINERS
and contributor["login"] not in PYBAMM_EMERITUS_MAINTAINERS
and contributor["login"] not in PYBAMM_MAINTAINER_TRAINEES
# Exclude the pre-commit-ci and allcontributors bots
and contributor["login"] != "pre-commit-ci[bot]"
and contributor["login"] != "allcontributors[bot]"
# Exclude all bots (pre-commit-ci, allcontributors, dependabot, et cetera)
and not contributor["login"].endswith("[bot]")
]


Expand Down Expand Up @@ -136,8 +135,7 @@ def get_maintainer_trainees():
<h3 id="${team_name}"class="name title">
${team_name}
</h3>
<div class="members">
${members}
<div class="members">${members}
</div>
</div>
"""
Expand Down
1 change: 0 additions & 1 deletion static/teams/contributors.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ <h3 id="Contributors"class="name title">
Contributors
</h3>
<div class="members">

<div class="member">
<a href="https://github.com/agriyakhetarpal" class="name">
<div class="photo">
Expand Down
1 change: 0 additions & 1 deletion static/teams/emeritus-maintainers.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ <h3 id="Emeritus Maintainers"class="name title">
Emeritus Maintainers
</h3>
<div class="members">

<div class="member">
<a href="https://github.com/Scottmar93" class="name">
<div class="photo">
Expand Down
1 change: 0 additions & 1 deletion static/teams/maintainer-trainees.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ <h3 id="Maintainer Trainees"class="name title">
Maintainer Trainees
</h3>
<div class="members">

<div class="member">
<a href="https://github.com/Afgr1087" class="name">
<div class="photo">
Expand Down
1 change: 0 additions & 1 deletion static/teams/maintainers.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ <h3 id="Maintainers"class="name title">
Maintainers
</h3>
<div class="members">

<div class="member">
<a href="https://github.com/tinosulzer" class="name">
<div class="photo">
Expand Down

0 comments on commit df9a549

Please sign in to comment.