Skip to content

Commit 02b3207

Browse files
authored
PYTHON-3008 Test Python 3.10 support (#36)
1 parent a1187be commit 02b3207

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/release-python-osx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [macos-10.15]
14-
python-version: [3.6, 3.7, 3.8, 3.9]
14+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
1515
name: Build CPython ${{ matrix.python-version }}-${{ matrix.os }}
1616
steps:
1717
- uses: actions/checkout@v2

.github/workflows/test-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ubuntu-20.04]
14-
python-version: [3.6, 3.7, 3.8, 3.9]
14+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
1515
name: CPython ${{ matrix.python-version }}-${{ matrix.os }}
1616
steps:
1717
- uses: actions/checkout@v2
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
setuptools>=47
22
cython>=0.29
3-
pyarrow>=3,<3.1
3+
pyarrow>=6,<6.1

bindings/python/setup.py

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

1717

1818
# Keep these dependencies synced with those in requirements/*.txt
19-
PYARROW_DEP = 'pyarrow>=3,<3.1'
19+
PYARROW_DEP = 'pyarrow>=6,<6.1'
2020
PYMONGO_DEP = 'pymongo>=3.11,<4'
2121
INSTALL_REQUIRES = [PYARROW_DEP, PYMONGO_DEP]
2222
SETUP_REQUIRES = ['setuptools>=47', 'cython>=0.29', PYARROW_DEP]

0 commit comments

Comments
 (0)