Skip to content

Commit 970f419

Browse files
committed
Bump version.
1 parent 79475aa commit 970f419

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

mocket/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
"FakeSSLContext",
3232
)
3333

34-
__version__ = "3.13.11"
34+
__version__ = "3.14.0"

mocket/mocket.py

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

2020
class Mocket:
2121
_socket_pairs: ClassVar[dict[Address, tuple[int, int]]] = {}
22-
_address: ClassVar[Address] = (None, None)
22+
_address: ClassVar[Address | tuple[None, None]] = (None, None)
2323
_entries: ClassVar[dict[Address, list[MocketEntry]]] = collections.defaultdict(list)
2424
_requests: ClassVar[list] = []
2525
_record_storage: ClassVar[MocketRecordStorage | None] = None

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.11",
2020
"Programming Language :: Python :: 3.12",
2121
"Programming Language :: Python :: 3.13",
22+
"Programming Language :: Python :: 3.14",
2223
"Programming Language :: Python :: Implementation :: CPython",
2324
"Programming Language :: Python :: Implementation :: PyPy",
2425
"Topic :: Software Development",

0 commit comments

Comments
 (0)