Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support core metadata versions 2.3 and 2.4 #39

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions internal/distributions/distribution.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,22 @@ var HeaderAttrs2_1 = append(HeaderAttrs1_2, []HeaderAttr{ // PEP 566

var HeaderAttrs2_2 = append(HeaderAttrs2_1, HeaderAttr{"Dynamic", "dynamic", true}) // PEP 643

var HeaderAttrs2_3 = HeaderAttrs2_2 // PEP 685

var HeaderAttrs2_4 = append(HeaderAttrs2_3, []HeaderAttr{ // PEP 639
{"License-Expression", "license_expression", false},
{"License-File", "license_file", false},
}...)

var HeaderAttrs = map[string][]HeaderAttr{
"1.0": HeaderAttrs1_0,
"1.1": HeaderAttrs1_1,
"1.2": HeaderAttrs1_2,
"2.0": HeaderAttrs2_0,
"2.1": HeaderAttrs2_1,
"2.2": HeaderAttrs2_2,
"2.3": HeaderAttrs2_3,
"2.4": HeaderAttrs2_4,
}

type Distribution interface {
Expand Down Expand Up @@ -175,6 +184,9 @@ type BaseDistribution struct {
DescriptionContentType string `json:"description_content_type"`
// version 2.2
Dynamic []string `json:"dynamic"`
// version 2.4
LicenseExpression string `json:"license_expression"`
LicenseFile string `json:"license_file"`
}

func (bd *BaseDistribution) GetHeaderAttrs() []HeaderAttr {
Expand Down