Skip to content

Commit 249c4a9

Browse files
Drop support for Python 3.8
Python 3.8 went end of life at 2024-10-07.
1 parent 27e4c44 commit 249c4a9

5 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
14+
python-version: ['3.9', '3.10', '3.11', '3.12']
1515
steps:
1616
- uses: actions/checkout@v3
1717
- name: Set up Python ${{ matrix.python-version }}

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.8
1+
3.9

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Added
1717
Removed
1818
-------
1919

20-
* Python 3.6 is no longer supported. It likely still works but we will no longer run CI against it.
20+
* Python 3.6 to 3.8 are no longer supported. They likely still works but we will no longer run CI against it.
2121
* Compatibility with junit-xml < 1.9. Junit-xml 1.9 was released more than three years ago.
2222

2323
Version 6.1.0 — 2023-09-22

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# This file is autogenerated by pip-compile with Python 3.8
2+
# This file is autogenerated by pip-compile with Python 3.9
33
# by the following command:
44
#
55
# pip-compile --no-emit-index-url --strip-extras

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
long_description_content_type='text/x-rst',
2020
license='new BSD',
2121
install_requires=requirements,
22-
python_requires='>=3.8',
22+
python_requires='>=3.9',
2323
classifiers=[
2424
'Development Status :: 5 - Production/Stable',
2525
'Environment :: Console',
@@ -28,7 +28,6 @@
2828
'License :: OSI Approved :: BSD License',
2929
'Topic :: System :: Archiving :: Packaging',
3030
'Programming Language :: Python :: 3',
31-
'Programming Language :: Python :: 3.8',
3231
'Programming Language :: Python :: 3.9',
3332
'Programming Language :: Python :: 3.10',
3433
'Programming Language :: Python :: 3.11',

0 commit comments

Comments
 (0)