Skip to content
Open
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
1 change: 1 addition & 0 deletions .lycheeignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ https://fonts.gstatic.com/*
https://www.linkedin.com/*
https://www.youtube-nocookie.com/*
https://t.co/*
https://dl.acm.org/*
7 changes: 6 additions & 1 deletion _data/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1013,6 +1013,9 @@
closed_at: 2025-02-17 18:52:18+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/179
joss:
publications:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@eliotwrobson i haven't looked at the preview for this yet but i think this will get rewritten (potentially) when we update the packages.yml file through our CI job. i may be wrong. but we intentially don't overwrite the user's name so they can update the contributors.yml file with a preferred name and that will "stick"

but publications (i think ) is not a part of our model in pyosMeta right now so i'm not sure that this data will stick /// it's likely to be overwritten util we update pyosMeta to support someone adding a publication.

Would you imagine a maintainer updating the issue with this information or just directly here?

- name: SoftwareX Publication
url: https://doi.org/10.1016/j.softx.2023.101613
partners:
gh_meta:
name: PyPartMC
Expand Down Expand Up @@ -1065,7 +1068,9 @@
updated_at: 2025-09-03 00:17:41+00:00
closed_at: 2025-09-03 00:17:41+00:00
issue_link: https://github.com/pyOpenSci/software-submission/issues/175
joss: https://zenodo.org/doi/10.5281/zenodo.10801503
publications:
- name: VLDB Publication
url: https://dl.acm.org/doi/abs/10.14778/3685800.3685887
partners:
gh_meta:
name: CyNetDiff
Expand Down
10 changes: 9 additions & 1 deletion _includes/package-grid.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,19 @@ <h3 class="package-card__title" itemprop="name">
{% endif %}
<li><a href="{{ apackage.issue_link }}"><i class="fa-solid fa-user-pen" aria-hidden="true"></i> View Review</a></li>
{% if apackage.joss %}
<li><a href="{{ apackage.archive }}" rel="permalink"><i class="fas fa-bookmark fa-fw" aria-hidden="true"></i> JOSS Approved</a></li>
<li><a href="{{ apackage.joss }}" rel="permalink"><i class="fas fa-file-alt fa-fw" aria-hidden="true"></i> JOSS Publication</a></li>
{% endif %}
{% if apackage.publications %}
{% for pub in apackage.publications %}
<li><a href="{{ pub.url }}" rel="permalink"><i class="fas fa-file-alt fa-fw" aria-hidden="true"></i> {{ pub.name }}</a></li>
{% endfor %}
{% endif %}
{% if apackage.partners contains "astropy" %}
<li><a href="communities/astropy.html"><i class="fa-solid fa-check-double" aria-hidden="true"></i> <img src="https://img.shields.io/badge/Affiliated-Astropy-orange.svg?style=flat" alt="Astropy" /></a></li>
{% endif %}
{% if apackage.date_accepted and apackage.date_accepted != "missing" %}
<li class="package-card__date-accepted"><i class="fas fa-calendar-check" aria-hidden="true"></i> Accepted: {{ apackage.date_accepted }}</li>
{% endif %}
{% if apackage.active == false %}
<li class="package-card__archived"><i class="fa-solid fa-box-archive" aria-hidden="true"></i> Archived</li>
{% endif %}
Expand Down
9 changes: 9 additions & 0 deletions _sass/minimal-mistakes/_pyos-isotope.scss
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,15 @@ input[type="text"] {
align-items: center;
gap: 0.4em;
}

// Date accepted styling
&.package-card__date-accepted {
color: #666;
font-size: 0.875em;
display: inline-flex;
align-items: center;
gap: 0.4em;
}
}
}
}
Expand Down