Skip to content

Commit

Permalink
[Fixed dependency bugs & Issue #12]
Browse files Browse the repository at this point in the history
  • Loading branch information
josephkearney91 committed Jul 22, 2024
1 parent abf68e2 commit 8d38824
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scrapeops_scrapy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.4"
__version__ = "0.5.6"
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages


VERSION = '0.5.4'
VERSION = '0.5.6'
DESCRIPTION = 'Scrapeops Scrapy SDK, is a monitoring tool for your Scrapy spiders.'

setup(name='scrapeops_scrapy',
Expand All @@ -15,9 +15,10 @@
packages=find_packages(),
install_requires=[
"tld>=0.13",
"requests>=2.31.0",
"requests>=2.32.0",
"json5>=0.9.13",
"urllib3>=2.1",
# The latest version of requests (2.29.0) does not support urllib3 2.0.0 #6432 - https://github.com/psf/requests/issues/6432
"urllib3>=1.26.14",
"itemadapter>=0.8.0",
],
classifiers=[
Expand Down

0 comments on commit 8d38824

Please sign in to comment.