Skip to content

Commit a94916e

Browse files
authored
PYTHON-2923 Add Python 3.10 to release tasks (#758)
1 parent df6f649 commit a94916e

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.evergreen/build-mac.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 3.6 3.7 3.8 3.9; do
11+
for VERSION in 3.6 3.7 3.8 3.9 3.10; do
1212
PYTHON=/Library/Frameworks/Python.framework/Versions/$VERSION/bin/python3
1313
rm -rf build
1414

.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 =~ (cp36|cp37|cp38|cp39) ]]; then
14+
if [[ ! $PYTHON =~ (cp36|cp37|cp38|cp39|cp310) ]]; then
1515
continue
1616
fi
1717
# https://github.com/pypa/manylinux/issues/49

.evergreen/build-manylinux.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ unexpected=$(find dist \! \( -iname dist -or \
3737
-iname '*cp36*' -or \
3838
-iname '*cp37*' -or \
3939
-iname '*cp38*' -or \
40-
-iname '*cp39*' \))
40+
-iname '*cp39*' -or \
41+
-iname '*cp310*' \))
4142
if [ -n "$unexpected" ]; then
4243
echo "Unexpected files:" $unexpected
4344
exit 1

.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 36 37 38 39; do
11+
for VERSION in 36 37 38 39 310; do
1212
_pythons=(C:/Python/Python${VERSION}/python.exe \
1313
C:/Python/32/Python${VERSION}/python.exe)
1414
for PYTHON in "${_pythons[@]}"; do

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,7 @@ def build_extension(self, ext):
336336
"Programming Language :: Python :: 3.7",
337337
"Programming Language :: Python :: 3.8",
338338
"Programming Language :: Python :: 3.9",
339+
"Programming Language :: Python :: 3.10",
339340
"Programming Language :: Python :: Implementation :: CPython",
340341
"Programming Language :: Python :: Implementation :: PyPy",
341342
"Topic :: Database"],

0 commit comments

Comments
 (0)