Skip to content

Commit 99e8fbe

Browse files
committed
Drop Python 3.7 support
Because GitHub actions fails with The version '3.7' with architecture 'x64' was not found for Ubuntu 24.04. The list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json and it's probably related to ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see actions/runner-images#10636
1 parent 9ccd78f commit 99e8fbe

File tree

6 files changed

+4
-8
lines changed

6 files changed

+4
-8
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
strategy:
2121
matrix:
2222
python-version:
23-
- "3.7"
2423
- "3.8"
2524
- "3.9"
2625
- "3.10"

CHANGES.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ Changes
22
=======
33

44

5-
2.5.3 (unreleased)
5+
2.6.0 (unreleased)
66
------------------
77

8-
- Nothing changed yet.
8+
- Drop support for Python 3.7.
99

1010

1111
2.5.2 (2024-11-27)

appveyor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ environment:
44
matrix:
55
# https://www.appveyor.com/docs/installed-software#python lists available
66
# versions
7-
- PYTHON: "C:\\Python37"
87
- PYTHON: "C:\\Python38"
98
- PYTHON: "C:\\Python39"
109
- PYTHON: "C:\\Python310"

findimports.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
from operator import attrgetter
109109

110110

111-
__version__ = '2.5.3.dev0'
111+
__version__ = '2.6.0.dev0'
112112
__author__ = 'Marius Gedminas <[email protected]>'
113113
__licence__ = 'MIT'
114114
__url__ = 'https://github.com/mgedmin/findimports'

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ def read(filename):
3838
'Intended Audience :: Developers',
3939
'Operating System :: OS Independent',
4040
'Programming Language :: Python',
41-
'Programming Language :: Python :: 3.7',
4241
'Programming Language :: Python :: 3.8',
4342
'Programming Language :: Python :: 3.9',
4443
'Programming Language :: Python :: 3.10',
@@ -54,7 +53,7 @@ def read(filename):
5453
if licence.startswith('MIT') else
5554
'License :: uhh, dunno',
5655
],
57-
python_requires='>=3.7',
56+
python_requires='>=3.8',
5857

5958
py_modules=['findimports'],
6059
zip_safe=False,

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[tox]
22
envlist =
3-
py37
43
py38
54
py39
65
py310

0 commit comments

Comments
 (0)