diff --git a/.lycheeignore b/.lycheeignore index 53c47fd3..b5995b00 100644 --- a/.lycheeignore +++ b/.lycheeignore @@ -4,3 +4,4 @@ https://fonts.gstatic.com/* https://www.linkedin.com/* https://www.youtube-nocookie.com/* https://t.co/* +https://dl.acm.org/* diff --git a/_data/packages.yml b/_data/packages.yml index fb309bf5..f0c9bd84 100644 --- a/_data/packages.yml +++ b/_data/packages.yml @@ -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: + - name: SoftwareX Publication + url: https://doi.org/10.1016/j.softx.2023.101613 partners: gh_meta: name: PyPartMC @@ -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 diff --git a/_includes/package-grid.html b/_includes/package-grid.html index 0dc396cb..9309b8f4 100644 --- a/_includes/package-grid.html +++ b/_includes/package-grid.html @@ -50,11 +50,19 @@

{% endif %}
  • View Review
  • {% if apackage.joss %} -
  • JOSS Approved
  • +
  • JOSS Publication
  • + {% endif %} + {% if apackage.publications %} + {% for pub in apackage.publications %} +
  • {{ pub.name }}
  • + {% endfor %} {% endif %} {% if apackage.partners contains "astropy" %}
  • Astropy
  • {% endif %} + {% if apackage.date_accepted and apackage.date_accepted != "missing" %} +
  • Accepted: {{ apackage.date_accepted }}
  • + {% endif %} {% if apackage.active == false %}
  • Archived
  • {% endif %} diff --git a/_sass/minimal-mistakes/_pyos-isotope.scss b/_sass/minimal-mistakes/_pyos-isotope.scss index 415490b3..447da5b5 100644 --- a/_sass/minimal-mistakes/_pyos-isotope.scss +++ b/_sass/minimal-mistakes/_pyos-isotope.scss @@ -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; + } } } }