Skip to content

Commit 78d2b5f

Browse files
committed
Get rid of Python 3.8 support
1 parent a67d02b commit 78d2b5f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [ubuntu-latest]
13-
python_version: ['3.8', '3.9', '3.10', '3.11']
13+
python_version: ['3.9', '3.10', '3.11']
1414
steps:
1515
- name: Checkout source repository for Python ${{ matrix.python_version }}
1616
uses: actions/checkout@v2
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
os: [ubuntu-latest]
33-
python_version: ['3.8', '3.9', '3.10', '3.11']
33+
python_version: ['3.9', '3.10', '3.11']
3434
steps:
3535
- name: Checkout source repository for Python ${{ matrix.python_version }}
3636
uses: actions/checkout@v2

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ def _get_long_description():
2121
'Intended Audience :: Developers',
2222
'License :: OSI Approved :: MIT License',
2323
'Programming Language :: Python :: 3',
24-
'Programming Language :: Python :: 3.8',
2524
'Programming Language :: Python :: 3.9',
2625
'Programming Language :: Python :: 3.10',
2726
'Programming Language :: Python :: 3.11',
@@ -45,7 +44,7 @@ def _get_long_description():
4544
'**/*',
4645
],
4746
},
48-
python_requires='>=3.8.1,<4',
47+
python_requires='>=3.9.1,<4',
4948
setup_requires=[
5049
'setuptools_scm==6.3.2',
5150
],

0 commit comments

Comments
 (0)