We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 128561f commit 777da4bCopy full SHA for 777da4b
1 file changed
setup.py
@@ -50,13 +50,15 @@ def read_long_description():
50
keywords="data science platform",
51
packages=find_packages(),
52
setup_requires=["setuptools_scm"],
53
- python_requires=">=3.6",
+ python_requires=">=3.9",
54
install_requires=[
55
"click",
56
"python-dateutil",
57
"requests",
58
"tabulate",
59
"faculty>=0.30.2",
60
+ "marshmallow<4", # TODO: this is an upstream dependency, remove it once minimul `faculty` version is bumped
61
+ "setuptools", # TODO: this is required to supply `distutils` until we remove that dependency in the code
62
],
63
entry_points={"console_scripts": ["faculty=faculty_cli.cli:cli"]},
64
)
0 commit comments