Skip to content

Commit 8cb7d2b

Browse files
committed
python -m incremental.update Twisted --newversion 24.7.0
1 parent 05b4a87 commit 8cb7d2b

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/twisted/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
from incremental import Version
99

10-
__version__ = Version("Twisted", 24, 7, 0, release_candidate=2)
10+
__version__ = Version("Twisted", 24, 7, 0)
1111
__all__ = ["__version__"]

src/twisted/internet/defer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1899,7 +1899,7 @@ def __init__(self, value: object) -> None:
18991899

19001900

19011901
@deprecated(
1902-
Version("Twisted", 24, 7, 0, release_candidate=2),
1902+
Version("Twisted", 24, 7, 0),
19031903
replacement="standard return statement",
19041904
)
19051905
def returnValue(val: object) -> NoReturn:
@@ -2258,7 +2258,7 @@ def thingummy():
22582258
A C{CancelledError} will be raised from the C{yield}ed L{Deferred} that
22592259
has been cancelled if that C{Deferred} does not otherwise suppress it.
22602260
2261-
C{inlineCallbacks} behaves very similarly to coroutines. Since Twisted 24.7.0rc2
2261+
C{inlineCallbacks} behaves very similarly to coroutines. Since Twisted 24.7.0
22622262
it is possible to rewrite functions using C{inlineCallbacks} to C{async def}
22632263
in piecewise manner and be mostly compatible to existing code.
22642264

src/twisted/web/http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,7 @@ def rawDataReceived(self, data):
848848

849849

850850
deprecatedModuleAttribute(
851-
Version("Twisted", 24, 7, 0, release_candidate=2),
851+
Version("Twisted", 24, 7, 0),
852852
"Use twisted.web.client.Agent instead.",
853853
__name__,
854854
HTTPClient.__name__,

src/twisted/web/test/test_http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4675,7 +4675,7 @@ def test_deprecated(self):
46754675
self.getDeprecatedModuleAttribute(
46764676
"twisted.web.http",
46774677
"HTTPClient",
4678-
Version("Twisted", 24, 7, 0, release_candidate=2),
4678+
Version("Twisted", 24, 7, 0),
46794679
)
46804680

46814681

0 commit comments

Comments
 (0)