We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37e72a7 commit 05278a4Copy full SHA for 05278a4
conda_recipe_v2_schema/model.py
@@ -48,7 +48,7 @@ class IfStatement(StrictBaseModel, Generic[T]):
48
49
50
class GlobDict(StrictBaseModel):
51
- include: GlobVec = Field(..., description="Glob patterns to include")
+ include: GlobVec = Field([], description="Glob patterns to include")
52
exclude: GlobVec = Field([], description="Glob patterns to exclude")
53
54
schema.json
@@ -1786,6 +1786,7 @@
1786
"type": "array"
1787
}
1788
],
1789
+ "default": [],
1790
"description": "Glob patterns to include",
1791
"title": "Include"
1792
},
@@ -1818,9 +1819,6 @@
1818
1819
"title": "Exclude"
1820
1821
- "required": [
1822
- "include"
1823
- ],
1824
"title": "GlobDict",
1825
"type": "object"
1826
0 commit comments