Skip to content

Commit 8d38824

Browse files
[Fixed dependency bugs & Issue #12]
1 parent abf68e2 commit 8d38824

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

scrapeops_scrapy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.5.4"
1+
__version__ = "0.5.6"

setup.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22

33

4-
VERSION = '0.5.4'
4+
VERSION = '0.5.6'
55
DESCRIPTION = 'Scrapeops Scrapy SDK, is a monitoring tool for your Scrapy spiders.'
66

77
setup(name='scrapeops_scrapy',
@@ -15,9 +15,10 @@
1515
packages=find_packages(),
1616
install_requires=[
1717
"tld>=0.13",
18-
"requests>=2.31.0",
18+
"requests>=2.32.0",
1919
"json5>=0.9.13",
20-
"urllib3>=2.1",
20+
# The latest version of requests (2.29.0) does not support urllib3 2.0.0 #6432 - https://github.com/psf/requests/issues/6432
21+
"urllib3>=1.26.14",
2122
"itemadapter>=0.8.0",
2223
],
2324
classifiers=[

0 commit comments

Comments
 (0)