Skip to content

Commit cc87dc3

Browse files
authored
Merge branch 'master' into PYTHON-1752
2 parents 2de0d88 + 85c5ee4 commit cc87dc3

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

doc/changelog.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Changelog
22
=========
33

44

5-
Changes in Version 4.12.1 (XXXX/XX/XX)
5+
Changes in Version 4.12.1 (2025/04/29)
66
--------------------------------------
77

88
Version 4.12.1 is a bug fix release.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
55
[project]
66
name = "pymongo"
77
dynamic = ["version", "dependencies", "optional-dependencies"]
8-
description = "Python driver for MongoDB <http://www.mongodb.org>"
8+
description = "PyMongo - the Official MongoDB Python driver"
99
readme = "README.md"
1010
license = {file="LICENSE"}
1111
requires-python = ">=3.9"

test/asynchronous/test_srv_polling.py

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import time
2121
from test.utils_shared import FunctionCallRecorder
2222
from typing import Any
23+
from unittest import skipIf
2324

2425
sys.path[0:0] = [""]
2526

@@ -91,6 +92,7 @@ def __exit__(self, exc_type, exc_val, exc_tb):
9192
self.disable()
9293

9394

95+
@skipIf(not _IS_SYNC and sys.platform == "win32", "PYTHON-5342 known issue on Windows")
9496
class TestSrvPolling(AsyncPyMongoTestCase):
9597
BASE_SRV_RESPONSE = [
9698
("localhost.test.build.10gen.cc", 27017),

test/test_srv_polling.py

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import time
2121
from test.utils_shared import FunctionCallRecorder
2222
from typing import Any
23+
from unittest import skipIf
2324

2425
sys.path[0:0] = [""]
2526

@@ -91,6 +92,7 @@ def __exit__(self, exc_type, exc_val, exc_tb):
9192
self.disable()
9293

9394

95+
@skipIf(not _IS_SYNC and sys.platform == "win32", "PYTHON-5342 known issue on Windows")
9496
class TestSrvPolling(PyMongoTestCase):
9597
BASE_SRV_RESPONSE = [
9698
("localhost.test.build.10gen.cc", 27017),

0 commit comments

Comments
 (0)