Skip to content

Commit 9f0c0c5

Browse files
authored
PYTHON-4401 Fix make_sdist job (#1618)
1 parent 4cd8191 commit 9f0c0c5

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/release-python.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- "[0-9]+.[0-9]+.[0-9]+[a-b][0-9]+"
99
- "[0-9]+.[0-9]+.[0-9]+rc[0-9]+"
1010
workflow_dispatch:
11+
pull_request:
1112

1213
concurrency:
1314
group: wheels-${{ github.ref }}
@@ -149,7 +150,7 @@ jobs:
149150

150151
make_sdist:
151152
name: Make SDist
152-
runs-on: macos-latest
153+
runs-on: macos-13
153154
steps:
154155
- uses: actions/checkout@v4
155156
with:

pymongo/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
from typing import Tuple, Union
1919

20-
version_tuple: Tuple[Union[int, str], ...] = (4, 8, 0, '.dev0')
20+
version_tuple: Tuple[Union[int, str], ...] = (4, 8, 0, ".dev0")
2121

2222

2323
def get_version_string() -> str:

0 commit comments

Comments
 (0)