File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff 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 = " " ;
You can’t perform that action at this time.
0 commit comments