Skip to content

Commit b7e361f

Browse files
authored
refactor: remove license_url field from schema and model (#63)
1 parent 711a469 commit b7e361f

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

conda_recipe_v2_schema/model.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,6 @@ class About(StrictBaseModel):
581581
license_file: ConditionalList[PathNoBackslash] | None = Field(
582582
None, description="Paths to the license files of this package."
583583
)
584-
license_url: str | None = Field(None, description="A url that points to the license file.")
585584

586585
# Text
587586
summary: str | None = Field(None, description="A short description of the package.")

schema.json

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -92,19 +92,6 @@
9292
"description": "Paths to the license files of this package.",
9393
"title": "License File"
9494
},
95-
"license_url": {
96-
"anyOf": [
97-
{
98-
"type": "string"
99-
},
100-
{
101-
"type": "null"
102-
}
103-
],
104-
"default": null,
105-
"description": "A url that points to the license file.",
106-
"title": "License Url"
107-
},
10895
"summary": {
10996
"anyOf": [
11097
{

0 commit comments

Comments
 (0)