Skip to content

Commit 325874c

Browse files
committed
Drop Python 3.7
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent 8da28b7 commit 325874c

3 files changed

Lines changed: 12 additions & 11 deletions

File tree

CHANGELOG.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
Release notes
22
=============
33

4-
Version 31.2.2 - (2024-09-05)
4+
Version 32.0.0 - (2024-09-05)
55
-----------------------------
66

77
- Add new optional argument to generate test data files from a template
88
- Migrate URLs to new aboutcode.org org
9+
- Drop support for Python 3.7
910

1011

1112
Version 31.2.1 - (2024-05-16)

azure-pipelines.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,47 +13,47 @@ jobs:
1313
parameters:
1414
job_name: ubuntu20_cpython
1515
image_name: ubuntu-20.04
16-
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"]
16+
python_versions: ["3.8", "3.9", "3.10", "3.11"]
1717
test_suites:
1818
all: venv/bin/pytest -n 2 -vvs
1919

2020
- template: etc/ci/azure-posix.yml
2121
parameters:
2222
job_name: ubuntu22_cpython
2323
image_name: ubuntu-22.04
24-
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"]
24+
python_versions: ["3.8", "3.9", "3.10", "3.11"]
2525
test_suites:
2626
all: venv/bin/pytest -n 2 -vvs
2727

2828
- template: etc/ci/azure-posix.yml
2929
parameters:
3030
job_name: macos12_cpython
3131
image_name: macOS-12
32-
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"]
32+
python_versions: ["3.8", "3.9", "3.10", "3.11"]
3333
test_suites:
3434
all: venv/bin/pytest -n 2 -vvs
3535

3636
- template: etc/ci/azure-posix.yml
3737
parameters:
3838
job_name: macos13_cpython
3939
image_name: macOS-13
40-
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"]
40+
python_versions: ["3.8", "3.9", "3.10", "3.11"]
4141
test_suites:
4242
all: venv/bin/pytest -n 2 -vvs
4343

4444
- template: etc/ci/azure-win.yml
4545
parameters:
4646
job_name: win2019_cpython
4747
image_name: windows-2019
48-
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"]
48+
python_versions: ["3.8", "3.9", "3.10", "3.11"]
4949
test_suites:
5050
all: venv\Scripts\pytest -n 2 -vvs
5151

5252
- template: etc/ci/azure-win.yml
5353
parameters:
5454
job_name: win2022_cpython
5555
image_name: windows-2022
56-
python_versions: ["3.7", "3.8", "3.9", "3.10", "3.11"]
56+
python_versions: ["3.8", "3.9", "3.10", "3.11"]
5757
test_suites:
5858
all: venv\Scripts\pytest -n 2 -vvs
5959

@@ -65,7 +65,7 @@ jobs:
6565
parameters:
6666
job_name: ubuntu20_test_all_supported_click_versions
6767
image_name: ubuntu-20.04
68-
python_versions: ["3.7", "3.8", "3.9", "3.10"]
68+
python_versions: ["3.8", "3.9", "3.10", "3.11"]
6969
test_suites:
7070
click_versions: |
7171
for clk_ver in 8.1.3 8.1.2 8.1.1 8.1.0 8.0.4 8.0.2 8.0.3 8.0.1 7.1.2 7.1.1 7.1 6.7;
@@ -82,7 +82,7 @@ jobs:
8282
parameters:
8383
job_name: ubuntu20_cpython_latest_from_pip
8484
image_name: ubuntu-20.04
85-
python_versions: ["3.7", "3.8", "3.9", "3.10"]
85+
python_versions: ["3.8", "3.9", "3.10", "3.11"]
8686
test_suites:
8787
all:
8888
venv/bin/pip install --upgrade-strategy eager --force-reinstall
@@ -92,7 +92,7 @@ jobs:
9292
parameters:
9393
job_name: win2019_cpython_latest_from_pip
9494
image_name: windows-2019
95-
python_versions: ["3.7", "3.8", "3.9", "3.10"]
95+
python_versions: ["3.8", "3.9", "3.10", "3.11"]
9696
test_suites:
9797
all:
9898
venv\Scripts\pip install --upgrade-strategy eager --force-reinstall

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ zip_safe = false
3737

3838
setup_requires = setuptools_scm[toml] >= 4
3939

40-
python_requires = >=3.7
40+
python_requires = >=3.8
4141

4242
install_requires =
4343
attrs >= 18.1, !=20.1.0

0 commit comments

Comments
 (0)