We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abf68e2 commit 8d38824Copy full SHA for 8d38824
scrapeops_scrapy/__init__.py
@@ -1 +1 @@
1
-__version__ = "0.5.4"
+__version__ = "0.5.6"
setup.py
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
2
3
4
-VERSION = '0.5.4'
+VERSION = '0.5.6'
5
DESCRIPTION = 'Scrapeops Scrapy SDK, is a monitoring tool for your Scrapy spiders.'
6
7
setup(name='scrapeops_scrapy',
@@ -15,9 +15,10 @@
15
packages=find_packages(),
16
install_requires=[
17
"tld>=0.13",
18
- "requests>=2.31.0",
+ "requests>=2.32.0",
19
"json5>=0.9.13",
20
- "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
21
+ "urllib3>=1.26.14",
22
"itemadapter>=0.8.0",
23
],
24
classifiers=[
0 commit comments