Skip to content

Commit e66c5aa

Browse files
committed
Remove Python 3.9 support
1 parent ee5a486 commit e66c5aa

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/pypi-build-artifacts.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ jobs:
4242
- uses: actions/setup-python@v6
4343
with:
4444
python-version: |
45-
3.9
4645
3.10
4746
3.11
4847
3.12
@@ -69,7 +68,7 @@ jobs:
6968
env:
7069
# Ignore 32 bit architectures
7170
CIBW_ARCHS: "auto64"
72-
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.9,<3.13"
71+
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.10"
7372
CIBW_TEST_REQUIRES: "pytest==7.4.2 moto==5.0.1"
7473
CIBW_TEST_COMMAND: "pytest {project}/tests/avro/test_decoder.py"
7574
# Ignore tests for pypy since not all dependencies are compiled for it

.github/workflows/svn-build-artifacts.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ jobs:
4242
- uses: actions/setup-python@v6
4343
with:
4444
python-version: |
45-
3.9
4645
3.10
4746
3.11
4847
3.12
@@ -64,7 +63,7 @@ jobs:
6463
env:
6564
# Ignore 32 bit architectures
6665
CIBW_ARCHS: "auto64"
67-
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.9,<3.13"
66+
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.10"
6867
CIBW_TEST_REQUIRES: "pytest==7.4.2 moto==5.0.1"
6968
CIBW_TEST_COMMAND: "pytest {project}/tests/avro/test_decoder.py"
7069
# Ignore tests for pypy since not all dependencies are compiled for it

mkdocs/docs/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ Deprecated in 0.1.0, will be removed in 0.2.0. The old_property is deprecated. P
234234

235235
For the type annotation the types from the `Typing` package are used.
236236

237-
PyIceberg offers support from Python 3.9 onwards, we can't use the [type hints from the standard collections](https://peps.python.org/pep-0585/).
237+
PyIceberg offers support from Python 3.10 onwards, we can't use the [type hints from the standard collections](https://peps.python.org/pep-0585/).
238238

239239
### Third party libraries
240240

0 commit comments

Comments
 (0)