From ad316c00c4b32afcec5d2b549d875d2bc674dec0 Mon Sep 17 00:00:00 2001 From: willyw0nka Date: Tue, 9 Apr 2024 16:44:52 +0200 Subject: [PATCH 1/2] fix: add dependencies to pyproject --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ef7cac1..c3a7af1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,9 @@ authors = [ {name = "Albert Simon", email = "simon.albert75@gmail.com"} ] description = "Python wrapper for Grype" +dependencies = [ + "dacite>=1.8.1" +] license = { text = "MIT License" } readme = "README.md" classifiers = [ From 945d5aeb0330499d555fd44ed24368c2ff8ee0bf Mon Sep 17 00:00:00 2001 From: willyw0nka Date: Tue, 9 Apr 2024 16:46:34 +0200 Subject: [PATCH 2/2] feat: add python 3.12 support --- .github/workflows/python-package.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index e9c108a..acfebef 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index c3a7af1..0ab5554 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,6 +30,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Typing :: Typed", ] requires-python = ">=3.7"