Skip to content

Commit f98abf0

Browse files
authored
Drop support for Python 3.7 #160 (#163)
Signed-off-by: tdruez <tdruez@nexb.com>
1 parent 14a11b5 commit f98abf0

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,13 @@ jobs:
3232
timeout-minutes: 10
3333
strategy:
3434
matrix:
35-
# Forcing macos-13 as Python3.7 is not supported anymore on macos-latest
36-
os: [ubuntu-latest, windows-latest, macos-13]
35+
os: [ubuntu-latest, windows-latest, macos-latest]
3736
python-version:
3837
- "3.12"
3938
- "3.11"
4039
- "3.10"
4140
- "3.9"
4241
- "3.8"
43-
- "3.7"
4442

4543
steps:
4644
- name: Checkout

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ Changelog
44
0.16.0 (unreleased)
55
-------------------
66

7+
- Drop support for Python 3.7.
8+
https://github.com/package-url/packageurl-python/issues/160
9+
710
0.15.6 (2024-07-25)
811
-------------------
912

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ classifiers =
1313
Operating System :: OS Independent
1414
Programming Language :: Python
1515
Programming Language :: Python :: 3 :: Only
16-
Programming Language :: Python :: 3.7
1716
Programming Language :: Python :: 3.8
1817
Programming Language :: Python :: 3.9
1918
Programming Language :: Python :: 3.10
@@ -35,7 +34,7 @@ license_files =
3534
- CHANGELOG.rst
3635

3736
[options]
38-
python_requires = >=3.7
37+
python_requires = >=3.8
3938
packages = find:
4039
package_dir = =src
4140
include_package_data = true

0 commit comments

Comments
 (0)