From 47787d23ea70045e8d185f951e72a33c9f3febd4 Mon Sep 17 00:00:00 2001 From: Daniel Luque Date: Thu, 28 Dec 2023 13:28:33 +0100 Subject: [PATCH 1/2] Adds support to Python 3.12 --- .github/workflows/pr-check.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index da831e4..2ad534a 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 - name: Setup Python diff --git a/pyproject.toml b/pyproject.toml index 3d04cf3..9ba0de2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: System :: Systems Administration", "Topic :: Utilities", ] From 3fc78c4c77b028c3122ccd05ebbfeb80fae81665 Mon Sep 17 00:00:00 2001 From: Daniel Luque Date: Thu, 28 Dec 2023 13:29:28 +0100 Subject: [PATCH 2/2] Bumps version to 1.4.0 --- lnmc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lnmc.py b/lnmc.py index db2498b..3813d7c 100644 --- a/lnmc.py +++ b/lnmc.py @@ -13,7 +13,7 @@ import click as cli import yaml -__version__ = "1.3.0" +__version__ = "1.4.0" DirectoriesDict = Dict[str, List[str]]