Skip to content

Commit 4e9d177

Browse files
committed
Increase min python version to 3.11
1 parent 9e2e802 commit 4e9d177

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/python-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
19+
python-version: [ "3.11", "3.12", "3.13" ]
2020

2121
steps:
2222
- uses: actions/checkout@v4

docs/change_log.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,4 +188,4 @@ an installation requirement.
188188
~~~~~~~~~~~~~~~~
189189
- Add type hints
190190
- Add as_namedtuple option to DataFrame get_columns() and get_location()
191-
- minimum python version now 3.12
191+
- minimum python version now 3.11

pyproject.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
]
77
description = 'Python DataFrame with fast insert and appends'
88
readme = "README.rst"
9-
requires-python = ">=3.4"
9+
requires-python = ">=3.11"
1010
keywords = ['dataframe', 'data', 'structure']
1111
license = { text = "MIT" }
1212
classifiers = [
@@ -17,10 +17,6 @@ classifiers = [
1717
# Pick your license as you wish (should match "license" above)
1818
'License :: OSI Approved :: MIT License',
1919
# Specify the Python versions you support here. In particular, ensure
20-
'Programming Language :: Python :: 3.7',
21-
'Programming Language :: Python :: 3.8',
22-
'Programming Language :: Python :: 3.9',
23-
'Programming Language :: Python :: 3.10',
2420
'Programming Language :: Python :: 3.11',
2521
'Programming Language :: Python :: 3.12',
2622
'Programming Language :: Python :: 3.13',

0 commit comments

Comments
 (0)