Skip to content
This repository was archived by the owner on Oct 19, 2022. It is now read-only.

Commit ed4af18

Browse files
committed
Fix readme issues
1 parent d71452e commit ed4af18

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ schema.dump({'light_color': EnumField.red}).data
4343
# {'light_color': 'red'}
4444

4545
schema.load({'light_color': 'red'}).data
46-
# {'light_color': EnumField.red}
46+
# {'light_color': StopLight.red}
4747
```
4848

4949
### Customizing loading and dumping behavior

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@
1919
if __name__ == '__main__':
2020
setup(
2121
name='marshmallow-enum',
22-
version='1.5.0',
22+
version='1.5.1',
2323
author='Alec Nikolas Reiter',
2424
author_email='[email protected]',
2525
description='Enum field for Marshmallow',
2626
long_description=readme + '\n\n' + changelog,
27+
long_description_content_type="text/markdown",
2728
package_data={'': ['LICENSE', 'README.md', 'CHANGELOG']},
2829
include_package_data=True,
2930
license='MIT',

0 commit comments

Comments
 (0)