Skip to content

Commit

Permalink
Drop support for Python 3.7 #160
Browse files Browse the repository at this point in the history
Signed-off-by: tdruez <tdruez@nexb.com>
  • Loading branch information
tdruez committed Jul 25, 2024
1 parent 14a11b5 commit b7abe91
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,13 @@ jobs:
timeout-minutes: 10
strategy:
matrix:
# Forcing macos-13 as Python3.7 is not supported anymore on macos-latest
os: [ubuntu-latest, windows-latest, macos-13]
os: [ubuntu-latest, windows-latest, macos-latest]
python-version:
- "3.12"
- "3.11"
- "3.10"
- "3.9"
- "3.8"
- "3.7"

steps:
- name: Checkout
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Changelog
0.16.0 (unreleased)
-------------------

- Drop support for Python 3.7.
https://github.com/package-url/packageurl-python/issues/160

0.15.6 (2024-07-25)
-------------------

Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -35,7 +34,7 @@ license_files =
- CHANGELOG.rst

[options]
python_requires = >=3.7
python_requires = >=3.8
packages = find:
package_dir = =src
include_package_data = true
Expand Down

0 comments on commit b7abe91

Please sign in to comment.