Skip to content

Commit 75cd902

Browse files
Increment RC version.
1 parent f6fe095 commit 75cd902

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

src/wrapt/__init__.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Wrapt is a library for decorators, wrappers and monkey patching.
33
"""
44

5-
__version_info__ = ("2", "2", "0", "rc8")
5+
__version_info__ = ("2", "2", "0", "rc9")
66
__version__ = ".".join(__version_info__)
77

88
from .__wrapt__ import (
@@ -20,13 +20,6 @@
2020
bind_state_to_wrapper,
2121
decorator,
2222
)
23-
from .synchronization import (
24-
async_to_sync,
25-
mark_as_async,
26-
mark_as_sync,
27-
sync_to_async,
28-
synchronized,
29-
)
3023
from .importer import (
3124
discover_post_import_hooks,
3225
notify_module_loaded,
@@ -45,6 +38,13 @@
4538
)
4639
from .proxies import AutoObjectProxy, LazyObjectProxy, ObjectProxy, lazy_import
4740
from .signature import with_signature
41+
from .synchronization import (
42+
async_to_sync,
43+
mark_as_async,
44+
mark_as_sync,
45+
sync_to_async,
46+
synchronized,
47+
)
4848
from .weakrefs import WeakFunctionProxy
4949

5050
__all__ = (

0 commit comments

Comments
 (0)