Skip to content

Commit 0477b9b

Browse files
blink1073caseyclementsShaneHarvey
authored
PYTHON-4077 [v4.6]: Ensure there is a MacOS wheel for Python 3.7 (#1527)
Co-authored-by: Casey Clements <caseyclements@users.noreply.github.com> Co-authored-by: Shane Harvey <shnhrv@gmail.com>
1 parent ecad17d commit 0477b9b

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

.evergreen/config.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ stepback: true
1212
# Actual testing tasks are marked with `type: test`
1313
command_type: system
1414

15-
# Protect ourself against rogue test case, or curl gone wild, that runs forever
15+
# Protect ourselves against rogue test case, or curl gone wild, that runs forever
1616
# Good rule of thumb: the averageish length a task takes, times 5
1717
# That roughly accounts for variable system performance for various buildvariants
1818
exec_timeout_secs: 3600 # 60 minutes is the longest we'll ever run (primarily
@@ -1174,6 +1174,7 @@ tasks:
11741174
- func: "build release"
11751175
vars:
11761176
VERSION: "3.7"
1177+
- func: "upload release"
11771178

11781179
- name: "release-windows"
11791180
tags: ["release_tag"]

doc/atlas.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Connections to Atlas require TLS/SSL.
3535

3636
You can read more about TLS versions and their security implications here:
3737

38-
`<https://cheatsheetseries.owasp.org/cheatsheets/Transport_Layer_Protection_Cheat_Sheet.html#only-support-strong-protocols>`_
38+
`<https://cheatsheetseries.owasp.org/cheatsheets/Transport_Layer_Security_Cheat_Sheet.html#only-support-strong-protocols>`_
3939

4040
.. _python.org: https://www.python.org/downloads/
4141
.. _homebrew: https://brew.sh/

doc/compatibility-policy.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ deprecated PyMongo features.
5959

6060
.. _the warnings module: https://docs.python.org/3/library/warnings.html
6161

62-
.. _the -W command line option: https://docs.python.org/3/using/cmdline.html#cmdoption-w
62+
.. _the -W command line option: https://docs.python.org/3/using/cmdline.html#cmdoption-W

doc/examples/tls.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ MongoDB.
3232

3333
You can read more about TLS versions and their security implications here:
3434

35-
`<https://cheatsheetseries.owasp.org/cheatsheets/Transport_Layer_Protection_Cheat_Sheet.html#only-support-strong-protocols>`_
35+
`<https://cheatsheetseries.owasp.org/cheatsheets/Transport_Layer_Security_Cheat_Sheet.html#only-support-strong-protocols>`_
3636

3737
.. _python.org: https://www.python.org/downloads/
3838
.. _homebrew: https://brew.sh/

doc/tools.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ MincePy
4444
workflow as possible.
4545

4646
Ming
47-
`Ming <http://merciless.sourceforge.net/>`_ (the Merciless) is a
47+
`Ming <https://ming.readthedocs.io/en/latest/>`_ is a
4848
library that allows you to enforce schemas on a MongoDB database in
4949
your Python application. It was developed by `SourceForge
5050
<http://sourceforge.net/>`_ in the course of their migration to

pymongo/collection.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2898,7 +2898,7 @@ def watch(
28982898
.. seealso:: The MongoDB documentation on `changeStreams <https://mongodb.com/docs/manual/changeStreams/>`_.
28992899
29002900
.. _change streams specification:
2901-
https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.rst
2901+
https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.md
29022902
"""
29032903
return CollectionChangeStream(
29042904
self,

pymongo/database.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@ def watch(
666666
.. seealso:: The MongoDB documentation on `changeStreams <https://mongodb.com/docs/manual/changeStreams/>`_.
667667
668668
.. _change streams specification:
669-
https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.rst
669+
https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.md
670670
"""
671671
return DatabaseChangeStream(
672672
self,

pymongo/mongo_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1030,7 +1030,7 @@ def watch(
10301030
.. seealso:: The MongoDB documentation on `changeStreams <https://mongodb.com/docs/manual/changeStreams/>`_.
10311031
10321032
.. _change streams specification:
1033-
https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.rst
1033+
https://github.com/mongodb/specifications/blob/master/source/change-streams/change-streams.md
10341034
"""
10351035
return ClusterChangeStream(
10361036
self.admin,

0 commit comments

Comments
 (0)