Skip to content

Commit 18d5c39

Browse files
committed
Drop support for python 3.8
1 parent 535ea45 commit 18d5c39

File tree

6 files changed

+5
-13
lines changed

6 files changed

+5
-13
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Python
1919
uses: actions/setup-python@v5
2020
with:
21-
python-version: 3.8
21+
python-version: 3.13
2222

2323
- name: Install dependencies
2424
run: |

.github/workflows/test.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,16 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
12+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1313
django-version: ['4.2', '5.0', '5.1', 'main']
1414
postgres-version: ['12', '16']
1515
mariadb-version: ['10.6', '10.11', '11.2']
1616
exclude:
1717
# Django 5.0 doesn't support python <=3.9 (https://docs.djangoproject.com/en/5.0/faq/install/)
18-
- python-version: '3.8'
19-
django-version: '5.0'
2018
- python-version: '3.9'
2119
django-version: '5.0'
2220

2321
# Django 5.1 doesn't support python <=3.9 (https://docs.djangoproject.com/en/5.1/faq/install/)
24-
- python-version: '3.8'
25-
django-version: '5.1'
2622
- python-version: '3.9'
2723
django-version: '5.1'
2824

@@ -33,8 +29,6 @@ jobs:
3329
postgres-version: '12'
3430

3531
# Django main doesn't support python <=3.9 (https://docs.djangoproject.com/en/5.1/faq/install/)
36-
- python-version: '3.8'
37-
django-version: 'main'
3832
- python-version: '3.9'
3933
django-version: 'main'
4034

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Silk is a live profiling and inspection tool for the Django framework. Silk inte
3131
Silk has been tested with:
3232

3333
* Django: 4.2, 5.0, 5.1
34-
* Python: 3.8, 3.9, 3.10, 3.11, 3.12, 3.13
34+
* Python: 3.9, 3.10, 3.11, 3.12, 3.13
3535

3636
## Installation
3737

docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ Requirements
5858
------------
5959

6060
* Django: 4.2, 5.0, 5.1
61-
* Python: 3.8, 3.9, 3.10, 3.11, 3.12, 3.13
61+
* Python: 3.9, 3.10, 3.11, 3.12, 3.13

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
'Intended Audience :: Developers',
2828
'Operating System :: OS Independent',
2929
'Programming Language :: Python',
30-
'Programming Language :: Python :: 3.8',
3130
'Programming Language :: Python :: 3.9',
3231
'Programming Language :: Python :: 3.10',
3332
'Programming Language :: Python :: 3.11',
@@ -42,6 +41,6 @@
4241
'autopep8',
4342
'gprof2dot>=2017.09.19',
4443
],
45-
python_requires='>=3.8',
44+
python_requires='>=3.9',
4645
setup_requires=['setuptools_scm'],
4746
)

tox.ini

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[gh-actions]
22
python =
3-
3.8: py38
43
3.9: py39
54
3.10: py310
65
3.11: py311

0 commit comments

Comments
 (0)