diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ffbae2e..61413a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 141dd9e..310b59e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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) ------------------- diff --git a/setup.cfg b/setup.cfg index 0516512..de17306 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 @@ -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