mirror of https://github.com/scrapy/scrapy.git
Merge branch '2.10'
This commit is contained in:
commit
d9efb94b61
|
|
@ -1,5 +1,5 @@
|
|||
[bumpversion]
|
||||
current_version = 2.10.0
|
||||
current_version = 2.10.1
|
||||
commit = True
|
||||
tag = True
|
||||
tag_name = {new_version}
|
||||
|
|
|
|||
|
|
@ -20,6 +20,13 @@ Backward-incompatible changes
|
|||
|
||||
(:issue:`5968`)
|
||||
|
||||
.. _release-2.10.1:
|
||||
|
||||
Scrapy 2.10.1 (2023-08-30)
|
||||
--------------------------
|
||||
|
||||
Marked ``Twisted >= 23.8.0`` as unsupported. (:issue:`6024`, :issue:`6026`)
|
||||
|
||||
.. _release-2.10.0:
|
||||
|
||||
Scrapy 2.10.0 (2023-08-04)
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
2.10.0
|
||||
2.10.1
|
||||
|
|
|
|||
3
setup.py
3
setup.py
|
|
@ -6,7 +6,8 @@ version = (Path(__file__).parent / "scrapy/VERSION").read_text("ascii").strip()
|
|||
|
||||
|
||||
install_requires = [
|
||||
"Twisted>=18.9.0",
|
||||
# 23.8.0 incompatibility: https://github.com/scrapy/scrapy/issues/6024
|
||||
"Twisted>=18.9.0,<23.8.0",
|
||||
"cryptography>=36.0.0",
|
||||
"cssselect>=0.9.1",
|
||||
"itemloaders>=1.0.1",
|
||||
|
|
|
|||
Loading…
Reference in New Issue