Skip to content

Commit c59fb0c

Browse files
author
gabino
committed
Update Python version requirement and dependencies in setup.py
1 parent 2041dbe commit c59fb0c

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

setup.py

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,18 @@
2121
packages=find_packages(),
2222
include_package_data=True,
2323
package_data=dict(cuenca=['py.typed']),
24-
python_requires='>=3.8',
24+
python_requires='>=3.9',
2525
install_requires=[
26-
'requests>=2.24,<28',
27-
'dataclasses>=0.7;python_version<"3.8"',
28-
'cuenca-validations>= 0.11.3,<0.12.0',
26+
'requests>=2.32.0',
27+
'cuenca-validations>=2.0.0',
28+
'pydantic-extra-types>=2.10.0',
2929
],
3030
classifiers=[
31-
'Programming Language :: Python :: 3.8',
31+
'Programming Language :: Python :: 3.9',
32+
'Programming Language :: Python :: 3.10',
33+
'Programming Language :: Python :: 3.11',
34+
'Programming Language :: Python :: 3.12',
35+
'Programming Language :: Python :: 3.13',
3236
'License :: OSI Approved :: MIT License',
3337
'Operating System :: OS Independent',
3438
],

0 commit comments

Comments
 (0)