Skip to content

Commit

Permalink
fix: add ijson to install_requires (#27)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
matasar authored Nov 7, 2024
1 parent 7e6d7a6 commit ebb5912
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ def read_file(fname):

setup(
name="spider-client",
version="0.1.22",
version="0.1.23",
url="https://github.com/spider-rs/spider-clients/tree/main/python",
author="Spider",
author_email="[email protected]",
description="Python SDK for Spider Cloud API",
packages=find_packages(),
install_requires=["requests"],
install_requires=["requests", "ijson"],
long_description=read_file("README.md"),
long_description_content_type="text/markdown",
classifiers=[
Expand Down

0 comments on commit ebb5912

Please sign in to comment.