Skip to content

Commit d90b8af

Browse files
[issue-839] Drop support for Python 3.7 (we are long past its EOL)
Signed-off-by: Armin Tänzer <armin.taenzer@tngtech.com>
1 parent a25937f commit d90b8af

File tree

4 files changed

+4
-17
lines changed

4 files changed

+4
-17
lines changed

.github/workflows/check_codestyle.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
os: [ ubuntu-latest, macos-latest, windows-latest ]
23-
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
24-
exclude: # see https://github.com/actions/runner-images/issues/9770#issuecomment-2085623315
25-
- python-version: "3.7"
26-
os: macos-latest
27-
include:
28-
- python-version: "3.7"
29-
os: macos-13
23+
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
3024

3125
steps:
3226
- uses: actions/checkout@v3

.github/workflows/install_and_test.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ ubuntu-latest, macos-latest, windows-latest ]
20-
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
21-
exclude: # see https://github.com/actions/runner-images/issues/9770#issuecomment-2085623315
22-
- python-version: "3.7"
23-
os: macos-latest
24-
include:
25-
- python-version: "3.7"
26-
os: macos-13
20+
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
2721

2822
steps:
2923
- uses: actions/checkout@v3

.github/workflows/prepare_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Python
2020
uses: actions/setup-python@v4
2121
with:
22-
python-version: '3.7'
22+
python-version: '3.8'
2323
- name: Set up dependencies
2424
run: |
2525
python -m pip install --upgrade pip

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,13 @@ classifiers = [
1616
"Intended Audience :: Developers",
1717
"Intended Audience :: System Administrators",
1818
"License :: OSI Approved :: Apache Software License",
19-
"Programming Language :: Python :: 3.7",
2019
"Programming Language :: Python :: 3.8",
2120
"Programming Language :: Python :: 3.9",
2221
"Programming Language :: Python :: 3.10",
2322
"Programming Language :: Python :: 3.11",
2423
]
2524
urls = { Homepage = "https://github.com/spdx/tools-python" }
26-
requires-python = ">=3.7"
25+
requires-python = ">=3.8"
2726
dependencies = ["click", "pyyaml", "xmltodict", "rdflib", "beartype", "uritools", "license_expression", "ply", "semantic_version"]
2827
dynamic = ["version"]
2928

0 commit comments

Comments
 (0)