Skip to content

Commit ad40a6e

Browse files
committed
Comments
1 parent 9a1bf0f commit ad40a6e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

cuenca/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '0.7.15.dev3'
1+
__version__ = '0.7.15.dev4'
22
CLIENT_VERSION = __version__
33
API_VERSION = '2020-03-19'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
requests==2.26.0
1+
requests==2.27.0
22
cuenca-validations==0.9.18.dev10
33
dataclasses>=0.7;python_version<"3.7"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
package_data=dict(cuenca=['py.typed']),
2424
python_requires='>=3.6',
2525
install_requires=[
26-
'requests>=2.24,<2.27',
27-
'cuenca-validations>=0.9.18.dev3,<0.9.19',
26+
'requests>=2.24,<2.30',
27+
'cuenca-validations>=0.9.18,<0.9.19',
2828
'dataclasses>=0.7;python_version<"3.7"',
2929
],
3030
classifiers=[

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ def curp_validation_request() -> Dict:
3535
names='José',
3636
first_surname='López',
3737
second_surname='Hernández',
38-
date_of_birth=dt.date(1966, 6, 6).isoformat(),
39-
state_of_birth=State.DF.value,
38+
date_of_birth=dt.date(1966, 6, 6),
39+
state_of_birth=State.DF,
4040
country_of_birth=Country.MX,
4141
gender=Gender.male,
4242
)

0 commit comments

Comments
 (0)