Skip to content

PYTHON-4077 [v4.6]: Ensure there is a MacOS wheel for Python 3.7 #1527

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Feb 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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