Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AloneFire committed Mar 15, 2021
1 parent dcbcaac commit 5fac5b0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion flask_hsrpc/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '0.1.30'
__version__ = '0.2.0'
8 changes: 4 additions & 4 deletions flask_hsrpc/request_parser/fields.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# -*- coding: utf-8 -*-
from marshmallow.fields import *
from marshmallow.exceptions import ValidationError
from marshmallow.fields import List as BaseList, Number as BaseNumber
from marshmallow import utils
import enum
from datetime import datetime

from marshmallow.exceptions import ValidationError
from marshmallow.fields import *
from marshmallow.fields import List as BaseList, Number as BaseNumber
from werkzeug.datastructures import ImmutableMultiDict


Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Flask>=1.1.2
marshmallow==3.0.0
python-consul==1.1.0
PyYAML==3.12
requests==2.20.1
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ def find_version(fname):
packages=setuptools.find_packages(),

install_requires=[
"Flask>=1.0.2",
"marshmallow>=2.15.1",
"python-consul>=0.7.2",
"requests>=2.20.0"
"Flask>=1.1.2",
"marshmallow==3.0.0",
"python-consul>=1.1.0",
"requests>=2.20.1"
],

classifiers=[
Expand Down

0 comments on commit 5fac5b0

Please sign in to comment.