Merge branch 'master' of github.com:mongodb/mongo-python-driver

This commit is contained in:
Steven Silvester 2024-04-25 13:19:00 -05:00
commit 69ef6bd901
No known key found for this signature in database
GPG Key ID: B1BF5EC3A8B32F91
2 changed files with 3 additions and 2 deletions

View File

@ -8,6 +8,7 @@ on:
- "[0-9]+.[0-9]+.[0-9]+[a-b][0-9]+"
- "[0-9]+.[0-9]+.[0-9]+rc[0-9]+"
workflow_dispatch:
pull_request:
concurrency:
group: wheels-${{ github.ref }}
@ -149,7 +150,7 @@ jobs:
make_sdist:
name: Make SDist
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:

View File

@ -17,7 +17,7 @@ from __future__ import annotations
from typing import Tuple, Union
version_tuple: Tuple[Union[int, str], ...] = (4, 8, 0, '.dev0')
version_tuple: Tuple[Union[int, str], ...] = (4, 8, 0, ".dev0")
def get_version_string() -> str: