Skip to content

Commit 2fe34e0

Browse files
authored
ARROW-171 Drop support for Python 3.7 (#159)
1 parent 7143af8 commit 2fe34e0

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/release-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- [ubuntu-20.04, manylinux_aarch64]
3333
- [macos-11, macosx_*]
3434
- [windows-2019, win_amd64]
35-
python: ["cp37", "cp38", "cp39", "cp310", "cp311"]
35+
python: ["cp38", "cp39", "cp310", "cp311"]
3636

3737
steps:
3838
- name: Checkout pymongoarrow
@@ -93,7 +93,7 @@ jobs:
9393
- uses: actions/setup-python@v4
9494
with:
9595
# Build sdist on lowest supported Python
96-
python-version: '3.7'
96+
python-version: '3.8'
9797

9898
- name: Build SDist
9999
working-directory: ./bindings/python

.github/workflows/test-python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
strategy:
3434
matrix:
3535
os: ["ubuntu-20.04", "macos-latest", "windows-latest"]
36-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
36+
python-version: [3.8, 3.9, "3.10", "3.11"]
3737
fail-fast: false
3838
name: CPython ${{ matrix.python-version }}-${{ matrix.os }}
3939
steps:

bindings/python/docs/source/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ PyMongoArrow is regularly built and tested on macOS and Linux
1111
Python Compatibility
1212
--------------------
1313

14-
PyMongoArrow is currently compatible with CPython 3.7, 3.8 and 3.9.
14+
PyMongoArrow is currently compatible with CPython 3.8, 3.9, 3.10 and 3.11.
1515

1616
Using Pip
1717
---------

bindings/python/setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ classifiers =
2020
Operating System :: POSIX
2121
Programming Language :: Python :: 3
2222
Programming Language :: Python :: 3 :: Only
23-
Programming Language :: Python :: 3.7
2423
Programming Language :: Python :: 3.8
2524
Programming Language :: Python :: 3.9
2625
Programming Language :: Python :: 3.10
@@ -32,7 +31,7 @@ classifiers =
3231
zip_safe = False
3332
include_package_data = True
3433
packages = find:
35-
python_requires = >=3.7
34+
python_requires = >=3.8
3635
install_requires =
3736
# keep versions in sync with pyproject.toml "requires"
3837
pyarrow >=11.0,<11.1

0 commit comments

Comments
 (0)