Skip to content

Commit b122766

Browse files
committed
Merge remote-tracking branch 'upstream/main' into unified-theme-rewrite
2 parents 4c50f43 + 6fa4a54 commit b122766

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

affiliated/index.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,10 @@ It is important that you understand your reviews will be done in public. There i
251251
if (!found_astropy) {
252252
continue;
253253
}
254+
var pkgname = package["package_name"];
255+
if (pkgname === "astropy") {
256+
continue;
257+
}
254258
255259
namerow = tab.insertRow(-1);
256260
@@ -259,12 +263,12 @@ It is important that you understand your reviews will be done in public. There i
259263
repocell = namerow.insertCell(2);
260264
pypicell = namerow.insertCell(3);
261265
262-
nmcell.innerHTML = package["package_name"];
266+
nmcell.innerHTML = pkgname;
263267
nmcell.className = 'first-package-row'
264268
nmcell.setAttribute('width', 100)
265269
urlcell.innerHTML = url_translator(package["gh_meta"]["documentation"]);
266270
repocell.innerHTML = repo_translator(package["repository_link"]);
267-
//pypicell.innerHTML = pypi_translator(package["package_name"]); // FIXME: https://github.com/pyOpenSci/pyopensci.github.io/issues/390
271+
//pypicell.innerHTML = pypi_translator(pkgname); // FIXME: https://github.com/pyOpenSci/pyopensci.github.io/issues/390
268272
269273
descrow = tab.insertRow(-1);
270274
descrow.insertCell(0).innerHTML = "";

0 commit comments

Comments
 (0)