Skip to content

Commit ebb5912

Browse files
authored
fix: add ijson to install_requires (#27)
* fix: add ijson to install_requires We're users of this and hit an error about ijson. I added it to our local requirements.txt and that fixed it, but I think this needs to be added here. I'm far from an expert on python packages, so if I'm mistaken please let me know. * chore: suppose I should also bump the version
1 parent 7e6d7a6 commit ebb5912

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ def read_file(fname):
88

99
setup(
1010
name="spider-client",
11-
version="0.1.22",
11+
version="0.1.23",
1212
url="https://github.com/spider-rs/spider-clients/tree/main/python",
1313
author="Spider",
1414
author_email="[email protected]",
1515
description="Python SDK for Spider Cloud API",
1616
packages=find_packages(),
17-
install_requires=["requests"],
17+
install_requires=["requests", "ijson"],
1818
long_description=read_file("README.md"),
1919
long_description_content_type="text/markdown",
2020
classifiers=[

0 commit comments

Comments
 (0)