Skip to content

Commit 4867c46

Browse files
committed
Remove python 3.8 support
python 3.8 is EOF since 2024-10-07 1. Stop testing it 2. Stop building wheels 3. Remove from `pyproject.toml`
1 parent 30f6d78 commit 4867c46

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
java-version: [8]
30-
python-version: ["3.8", "3.11", "3.12", "3.13"]
30+
python-version: ["3.9", "3.11", "3.12", "3.13"]
3131
event_loop_manager: ["libev", "asyncio", "asyncore"]
3232
exclude:
3333
- python-version: "3.12"

.github/workflows/lib-build-and-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
echo "CIBW_TEST_COMMAND=true" >> $GITHUB_ENV;
9999
echo "CIBW_TEST_COMMAND_WINDOWS=(exit 0)" >> $GITHUB_ENV;
100100
echo "CIBW_TEST_SKIP=*" >> $GITHUB_ENV;
101-
echo "CIBW_SKIP=cp2* cp36* pp36* cp37* pp37* *i686 *musllinux*" >> $GITHUB_ENV;
101+
echo "CIBW_SKIP=cp2* cp36* pp36* cp37* pp37* pp38* *i686 *musllinux*" >> $GITHUB_ENV;
102102
echo "CIBW_BUILD=cp3* pp3*" >> $GITHUB_ENV;
103103
echo "CIBW_BEFORE_TEST=true" >> $GITHUB_ENV;
104104
echo "CIBW_BEFORE_TEST_WINDOWS=(exit 0)" >> $GITHUB_ENV;

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ classifiers = [
1212
'Natural Language :: English',
1313
'Operating System :: OS Independent',
1414
'Programming Language :: Python',
15-
'Programming Language :: Python :: 3.8',
1615
'Programming Language :: Python :: 3.9',
1716
'Programming Language :: Python :: 3.10',
1817
'Programming Language :: Python :: 3.11',

0 commit comments

Comments
 (0)