From 40d0650abaad0120920280c5a97e66805f81ba0c Mon Sep 17 00:00:00 2001 From: Casey Clements Date: Tue, 19 Dec 2023 12:34:21 -0500 Subject: [PATCH 1/4] =?UTF-8?q?PYTHON-4077=20Make=20sure=20to=20upload=20r?= =?UTF-8?q?elease=20wheel=20for=20python=203.7=20on=20macos=E2=80=A6=20(#1?= =?UTF-8?q?459)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit ffd61f8d74f6264580285b3c75199969b617e0ac) --- .evergreen/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.evergreen/config.yml b/.evergreen/config.yml index f66b055362..6ddc0ed7df 100644 --- a/.evergreen/config.yml +++ b/.evergreen/config.yml @@ -12,7 +12,7 @@ stepback: true # Actual testing tasks are marked with `type: test` command_type: system -# Protect ourself against rogue test case, or curl gone wild, that runs forever +# Protect ourselves against rogue test case, or curl gone wild, that runs forever # Good rule of thumb: the averageish length a task takes, times 5 # That roughly accounts for variable system performance for various buildvariants exec_timeout_secs: 3600 # 60 minutes is the longest we'll ever run (primarily @@ -1174,6 +1174,7 @@ tasks: - func: "build release" vars: VERSION: "3.7" + - func: "upload release" - name: "release-windows" tags: ["release_tag"] From 44b85c27e6e94ffa3371dbd70200ed5ad78849c8 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Wed, 31 Jan 2024 13:57:43 -0600 Subject: [PATCH 2/4] PYTHON-4174 Update TLS cheat sheet link (#1496) (cherry picked from commit b185e50e4170c02dabb0bb61a456f2250edb508e) --- doc/atlas.rst | 2 +- doc/examples/tls.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/atlas.rst b/doc/atlas.rst index 6685cf9fb8..19ba9732f2 100644 --- a/doc/atlas.rst +++ b/doc/atlas.rst @@ -35,7 +35,7 @@ Connections to Atlas require TLS/SSL. You can read more about TLS versions and their security implications here: - ``_ + ``_ .. _python.org: https://www.python.org/downloads/ .. _homebrew: https://brew.sh/ diff --git a/doc/examples/tls.rst b/doc/examples/tls.rst index 557ee7d9b9..9241ac23e7 100644 --- a/doc/examples/tls.rst +++ b/doc/examples/tls.rst @@ -32,7 +32,7 @@ MongoDB. You can read more about TLS versions and their security implications here: - ``_ + ``_ .. _python.org: https://www.python.org/downloads/ .. _homebrew: https://brew.sh/ From e389bd971a3f651d0f56c8b04e7304054b674430 Mon Sep 17 00:00:00 2001 From: Shane Harvey Date: Mon, 22 Jan 2024 13:48:18 -0800 Subject: [PATCH 3/4] PYTHON-4157 Fix broken links (#1482) (cherry picked from commit 59c2f7cd5b0c8d6f95d996ee5ba00ab9ea34dfaa) --- doc/compatibility-policy.rst | 2 +- doc/tools.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/compatibility-policy.rst b/doc/compatibility-policy.rst index a20b9681eb..834f86ce54 100644 --- a/doc/compatibility-policy.rst +++ b/doc/compatibility-policy.rst @@ -59,4 +59,4 @@ deprecated PyMongo features. .. _the warnings module: https://docs.python.org/3/library/warnings.html -.. _the -W command line option: https://docs.python.org/3/using/cmdline.html#cmdoption-w +.. _the -W command line option: https://docs.python.org/3/using/cmdline.html#cmdoption-W diff --git a/doc/tools.rst b/doc/tools.rst index 7aea84cb0c..6dd0df8a4d 100644 --- a/doc/tools.rst +++ b/doc/tools.rst @@ -44,7 +44,7 @@ MincePy workflow as possible. Ming - `Ming `_ (the Merciless) is a + `Ming `_ is a library that allows you to enforce schemas on a MongoDB database in your Python application. It was developed by `SourceForge `_ in the course of their migration to From 95bc9af6ce3c14e620ba15c33e02d743886421f1 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Fri, 16 Feb 2024 14:07:49 -0600 Subject: [PATCH 4/4] update links --- pymongo/collection.py | 2 +- pymongo/database.py | 2 +- pymongo/mongo_client.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pymongo/collection.py b/pymongo/collection.py index 7f4354e7d1..9630b83d91 100644 --- a/pymongo/collection.py +++ b/pymongo/collection.py @@ -2898,7 +2898,7 @@ def watch( .. seealso:: The MongoDB documentation on `changeStreams `_. .. _change streams specification: - https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.rst + https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.md """ return CollectionChangeStream( self, diff --git a/pymongo/database.py b/pymongo/database.py index 70cdee2dc3..a52b3a29a5 100644 --- a/pymongo/database.py +++ b/pymongo/database.py @@ -666,7 +666,7 @@ def watch( .. seealso:: The MongoDB documentation on `changeStreams `_. .. _change streams specification: - https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.rst + https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.md """ return DatabaseChangeStream( self, diff --git a/pymongo/mongo_client.py b/pymongo/mongo_client.py index 53d0ffda75..089f68b77a 100644 --- a/pymongo/mongo_client.py +++ b/pymongo/mongo_client.py @@ -1030,7 +1030,7 @@ def watch( .. seealso:: The MongoDB documentation on `changeStreams `_. .. _change streams specification: - https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.rst + https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.md """ return ClusterChangeStream( self.admin,