Requirement update
Bugfix
This commit is contained in:
parent
5a1f7801a2
commit
b8884b4877
@ -232,12 +232,12 @@ def json_decode_object_hook(
|
|||||||
|
|
||||||
|
|
||||||
def json_load(f, **kwargs):
|
def json_load(f, **kwargs):
|
||||||
kwargs.update(object_hook=json_decode_object_hook)
|
# kwargs.update(object_hook=json_decode_object_hook)
|
||||||
return json.load(f, **kwargs)
|
return json.load(f, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
def json_loads(s: str, **kwargs):
|
def json_loads(s: str, **kwargs):
|
||||||
kwargs.update(object_hook=json_decode_object_hook)
|
# kwargs.update(object_hook=json_decode_object_hook)
|
||||||
return json.loads(s, **kwargs)
|
return json.loads(s, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
|
@ -8,14 +8,14 @@ isort==5.9.2
|
|||||||
pip==21.1.3
|
pip==21.1.3
|
||||||
pre-commit==2.13.0
|
pre-commit==2.13.0
|
||||||
pur==5.4.2
|
pur==5.4.2
|
||||||
PyInstaller==4.3
|
PyInstaller==4.4
|
||||||
PySocks==1.7.1
|
PySocks==1.7.1
|
||||||
pytest==6.2.4
|
pytest==6.2.4
|
||||||
pytz==2021.1
|
pytz==2021.1
|
||||||
requests==2.25.1
|
requests==2.26.0
|
||||||
requests-toolbelt==0.9.1
|
requests-toolbelt==0.9.1
|
||||||
responses==0.13.3
|
responses==0.13.3
|
||||||
setuptools==57.1.0
|
setuptools==57.4.0
|
||||||
Sphinx==4.0.3
|
Sphinx==4.1.1
|
||||||
twine==3.4.1
|
twine==3.4.1
|
||||||
wheel==0.36.2
|
wheel==0.36.2
|
||||||
|
9
setup.py
9
setup.py
@ -12,17 +12,16 @@ with open('HISTORY.rst') as history_file:
|
|||||||
history = history_file.read()
|
history = history_file.read()
|
||||||
|
|
||||||
requirements = [
|
requirements = [
|
||||||
'PySocks>=1.7.1',
|
'PySocks==1.7.1',
|
||||||
'pytz>=2021.1',
|
'pytz==2021.1',
|
||||||
'requests>=2.25.0',
|
'requests==2.26.0',
|
||||||
'requests-toolbelt>=0.9.0',
|
'requests-toolbelt==0.9.1',
|
||||||
]
|
]
|
||||||
|
|
||||||
setup_requirements = []
|
setup_requirements = []
|
||||||
|
|
||||||
test_requirements = [
|
test_requirements = [
|
||||||
"pytest==6.2.4",
|
"pytest==6.2.4",
|
||||||
"responses==0.13.3"
|
|
||||||
]
|
]
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user