Skip to content

Commit

Permalink
PYTHON-4401 Fix make_sdist job (#1618)
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Apr 25, 2024
1 parent 4cd8191 commit 9f0c0c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release-python.yml
Expand Up @@ -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 }}
Expand Down Expand Up @@ -149,7 +150,7 @@ jobs:

make_sdist:
name: Make SDist
runs-on: macos-latest
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion pymongo/_version.py
Expand Up @@ -17,7 +17,7 @@

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:
Expand Down

0 comments on commit 9f0c0c5

Please sign in to comment.