Skip to content

Commit 7bf7bcc

Browse files
authored
Support extras statements in Python PDM cataloger (#4352)
* fix pdm Signed-off-by: Alex Goodman <[email protected]> * update json schema Signed-off-by: Alex Goodman <[email protected]> * fix tests Signed-off-by: Alex Goodman <[email protected]> * add test for metadata construction Signed-off-by: Alex Goodman <[email protected]> * add missing test fixture Signed-off-by: Alex Goodman <[email protected]> * conserve markers Signed-off-by: Alex Goodman <[email protected]> * update json schema Signed-off-by: Alex Goodman <[email protected]> * add additional tests Signed-off-by: Alex Goodman <[email protected]> --------- Signed-off-by: Alex Goodman <[email protected]>
1 parent 6a21b5e commit 7bf7bcc

File tree

11 files changed

+6113
-148
lines changed

11 files changed

+6113
-148
lines changed

internal/constants.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,9 @@ package internal
33
const (
44
// JSONSchemaVersion is the current schema version output by the JSON encoder
55
// This is roughly following the "SchemaVer" guidelines for versioning the JSON schema. Please see schema/json/README.md for details on how to increment.
6-
JSONSchemaVersion = "16.0.43"
6+
JSONSchemaVersion = "16.1.0"
7+
8+
// Changelog
9+
// 16.1.0 - reformulated the python pdm fields (added "URL" and removed the unused "path" field).
10+
711
)

0 commit comments

Comments
 (0)