OpenDataServices / lib-cove-web

Other
1 stars 1 forks source link

libcoveweb 0.30.5 was somehow released with a modified input.html #147

Open jpmckinney opened 8 hours ago

jpmckinney commented 8 hours ago

This is missing (though it's in git and there is no commit that removes it):

https://files.pythonhosted.org/packages/18/35/4db3946fdb4e073408c97af2211773d78ccb80111568019705fb69385312/libcoveweb-0.30.5.tar.gz

{% block extrafooterscript %}
 <script>
   //If javascript is off all pannels show.
   //We use this to collapse pannels 2 and 3 if javascript is on.
  $("#collapseTwo").attr('class', 'panel-collapse collapse');
  $("#collapseThree").attr('class', 'panel-collapse collapse');

  $('form').submit(function() {
      $('#loading').css({"display": "block"});
      $('#accordion').hide();
  });
  $(window).unload(function() {
    $('#loading').css({"display": "none"});
  })

</script>
{% endblock %}
jpmckinney commented 8 hours ago

Since there is no workflow for PyPI, I assume whoever released it did so with a dirty local repository.

Please release using a workflow to avoid user error: https://ocp-software-handbook.readthedocs.io/en/latest/python/packages.html#release-process