Conversation
GitHub's licence detector matches on exact licence text. The previous LICENSE was a 631-byte summary, so GitHub reported NOASSERTION and Zenodo fell back to its own default of CC-BY-4.0 -- a content licence, not a software licence -- on the v2026.07.0 record (10.5281/zenodo.21723749). Replace it with the full verbatim Apache-2.0 text already used by healpix-resample, healpix-analyse and healpix-geo, all three of which GitHub detects correctly. The copyright holder line is unchanged.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
LICENSEwas a 631-byte summary of Apache-2.0 rather than the licence text itself. GitHub's detector matches on exact text, so it reports:Zenodo takes the licence from GitHub's detected licence, and when that is
NOASSERTIONit falls back to its own default, CC-BY-4.0. So the published record for v2026.07.0 (10.5281/zenodo.21723749) currently states a content licence for software.The three sibling repos ship the full verbatim text and are detected correctly:
Change
Replaces
LICENSEwith the same verbatim Apache-2.0 file used by the other three repos. The copyright holder line is unchanged — it still readsCopyright 2026, Plotting healpix data with matplotlib and cartopy developers. Apart from that line the file is byte-identical to the sibling repos'LICENSE.No code, packaging or metadata changes;
pyproject.tomlalready declareslicense = { text = "Apache-2.0" }.Follow-up not covered here
This fixes detection for future releases. The existing Zenodo record still says CC-BY-4.0 and needs a manual metadata edit in the Zenodo UI (editing metadata does not change the DOI).
🤖 Generated with Claude Code