Skip to content

Commit

Permalink
PYTHON-4077 [v4.6]: Ensure there is a MacOS wheel for Python 3.7 (#1527)
Browse files Browse the repository at this point in the history
Co-authored-by: Casey Clements <[email protected]>
Co-authored-by: Shane Harvey <[email protected]>
  • Loading branch information
3 people committed Feb 16, 2024
1 parent ecad17d commit 0477b9b
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -1174,6 +1174,7 @@ tasks:
- func: "build release"
vars:
VERSION: "3.7"
- func: "upload release"

- name: "release-windows"
tags: ["release_tag"]
Expand Down
2 changes: 1 addition & 1 deletion doc/atlas.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Connections to Atlas require TLS/SSL.

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

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

.. _python.org: https://www.python.org/downloads/
.. _homebrew: https://brew.sh/
Expand Down
2 changes: 1 addition & 1 deletion doc/compatibility-policy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion doc/examples/tls.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ MongoDB.

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

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

.. _python.org: https://www.python.org/downloads/
.. _homebrew: https://brew.sh/
Expand Down
2 changes: 1 addition & 1 deletion doc/tools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ MincePy
workflow as possible.

Ming
`Ming <http://merciless.sourceforge.net/>`_ (the Merciless) is a
`Ming <https://ming.readthedocs.io/en/latest/>`_ is a
library that allows you to enforce schemas on a MongoDB database in
your Python application. It was developed by `SourceForge
<http://sourceforge.net/>`_ in the course of their migration to
Expand Down
2 changes: 1 addition & 1 deletion pymongo/collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -2898,7 +2898,7 @@ def watch(
.. seealso:: The MongoDB documentation on `changeStreams <https://mongodb.com/docs/manual/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,
Expand Down
2 changes: 1 addition & 1 deletion pymongo/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ def watch(
.. seealso:: The MongoDB documentation on `changeStreams <https://mongodb.com/docs/manual/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,
Expand Down
2 changes: 1 addition & 1 deletion pymongo/mongo_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ def watch(
.. seealso:: The MongoDB documentation on `changeStreams <https://mongodb.com/docs/manual/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,
Expand Down

0 comments on commit 0477b9b

Please sign in to comment.