Skip to content

Commit 701ddd1

Browse files
Allow non-string field defaults
Field defaults
2 parents af12a7b + d737f9a commit 701ddd1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.111
2+
current_version = 0.0.112
33
commit = True
44
tag = True
55

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setuptools.setup(
1515
name="mario",
16-
version="0.0.111",
16+
version="0.0.112",
1717
description="Shell pipes for Python.",
1818
long_description=open(PROJECT_ROOT / "README.rst").read(),
1919
long_description_content_type="text/x-rst",

src/mario/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.111"
1+
__version__ = "0.0.112"

src/mario/aliasing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class OptionSchema(marshmallow.Schema):
4646
required = fields.Boolean(default=False)
4747
nargs = fields.Integer()
4848
multiple = fields.Boolean()
49-
default = fields.String(default=None)
49+
default = fields.Field(default=None)
5050

5151
@marshmallow.post_load()
5252
def make_option(self, validated, partial, many):

0 commit comments

Comments
 (0)