Incremental to 19.7.0

This commit is contained in:
Amber H. Brown 2019-07-28 18:24:45 +10:00
parent 4d61c62cd0
commit 0f3e8cd689
3 changed files with 3 additions and 3 deletions

View File

@ -7,5 +7,5 @@ Provides Twisted version information.
from incremental import Version
__version__ = Version('Twisted', 19, 7, 0, release_candidate=1)
__version__ = Version('Twisted', 19, 7, 0)
__all__ = ["__version__"]

View File

@ -12,7 +12,7 @@ from twisted.test import proto_helpers
for obj in proto_helpers.__all__:
deprecatedModuleAttribute(
Version('Twisted', 19, 7, 0, release_candidate=1),
Version('Twisted', 19, 7, 0),
'Please use twisted.internet.testing.{} instead.'.format(obj),
'twisted.test.proto_helpers',
obj)

View File

@ -303,7 +303,7 @@ class ServiceTests(TestCase):
self.assertEqual(warnings[0]['category'], DeprecationWarning)
self.assertEqual(
warnings[0]['message'],
"--notracebacks was deprecated in Twisted 19.7.0rc1"
"--notracebacks was deprecated in Twisted 19.7.0"
)
self.assertEqual(len(warnings), 1)