Skip to content

Commit 9946d1e

Browse files
committed
fix mongo download url
1 parent cba6bc9 commit 9946d1e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/github-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
MONGODB_3_6: 3.6.23
1515
MONGODB_4_0: 4.0.28
1616
MONGODB_4_4: 4.4
17-
MONGODB_5_0: 5.0
17+
MONGODB_5_0: "5.0"
1818

1919
PYMONGO_3_4: 3.4
2020
PYMONGO_3_6: 3.6

.github/workflows/install_mongo.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ elif [[ "$MONGODB" == *"5.0"* ]]; then
1313
mongo_build=mongodb-linux-x86_64-ubuntu1804-v${MONGODB}-latest
1414
fi
1515

16-
wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1804-v${MONGODB}-latest
16+
wget http://fastdl.mongodb.org/linux/$mongo_build.tgz
1717
tar xzf $mongo_build.tgz
1818

1919
mongodb_dir=$(find ${PWD}/ -type d -name "mongodb-linux-x86_64*")

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ deps =
1111
mg311: pymongo>=3.11,<3.12
1212
mg312: pymongo>=3.12,<3.13
1313
mg4: pymongo>=4.0,<4.1
14-
mg43: pymongo>=4.3,<4.4
14+
mg432: pymongo>=4.3,<4.4
1515
setenv =
1616
PYTHON_EGG_CACHE = {envdir}/python-eggs

0 commit comments

Comments
 (0)