Skip to content

Commit cf7026c

Browse files
committed
Merge branch 'master' of github.com:mongodb/mongo-python-driver
2 parents 5934b2b + 42f4503 commit cf7026c

17 files changed

+125
-78
lines changed

.evergreen/build-manylinux-internal.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ mv dist/* validdist || true
1111

1212
# Compile wheels
1313
for PYTHON in /opt/python/*/bin/python; do
14-
if [[ ! $PYTHON =~ (cp37|cp38|cp39|cp310|cp311|cp312) ]]; then
14+
if [[ ! $PYTHON =~ (cp38|cp39|cp310|cp311|cp312) ]]; then
1515
continue
1616
fi
1717
# https://github.com/pypa/manylinux/issues/49

.evergreen/build-manylinux.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ ls dist
3939

4040
# Check for any unexpected files.
4141
unexpected=$(find dist \! \( -iname dist -or \
42-
-iname '*cp37*' -or \
4342
-iname '*cp38*' -or \
4443
-iname '*cp39*' -or \
4544
-iname '*cp310*' -or \

.evergreen/build-windows.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ rm -rf validdist
88
mkdir -p validdist
99
mv dist/* validdist || true
1010

11-
for VERSION in 37 38 39 310 311 312; do
11+
for VERSION in 38 39 310 311 312; do
1212
_pythons=("C:/Python/Python${VERSION}/python.exe" \
1313
"C:/Python/32/Python${VERSION}/python.exe")
1414
for PYTHON in "${_pythons[@]}"; do

.evergreen/combine-coverage.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ if [ -z "$PYTHON_BINARY" ]; then
1313
fi
1414

1515
createvirtualenv "$PYTHON_BINARY" covenv
16-
# coverage 7.3 dropped support for Python 3.7, keep in sync with run-tests.sh
16+
# Keep in sync with run-tests.sh
1717
# coverage >=5 is needed for relative_files=true.
18-
pip install -q "coverage>=5,<7.3"
18+
pip install -q "coverage>=5,<=7.5"
1919

2020
pip list
2121
ls -la coverage/

0 commit comments

Comments
 (0)