From d4cbc5443af9959ff992964fd293e210b1bf8fd9 Mon Sep 17 00:00:00 2001 From: Joachim Metz Date: Sat, 10 Feb 2024 16:30:00 +0100 Subject: [PATCH] Removed end-of-life Python 3.7 support (#220) --- .github/workflows/test_tox.yml | 2 -- config/dpkg/changelog | 4 ++-- dfwinreg/__init__.py | 2 +- docs/sources/user/Installation-instructions.md | 6 +++--- pyproject.toml | 2 +- setup.cfg | 4 ++-- tox.ini | 4 ++-- 7 files changed, 11 insertions(+), 13 deletions(-) diff --git a/.github/workflows/test_tox.yml b/.github/workflows/test_tox.yml index 195554a..d6de1f3 100644 --- a/.github/workflows/test_tox.yml +++ b/.github/workflows/test_tox.yml @@ -14,8 +14,6 @@ jobs: strategy: matrix: include: - - python-version: '3.7' - toxenv: 'py37,wheel' - python-version: '3.8' toxenv: 'py38,wheel' - python-version: '3.9' diff --git a/config/dpkg/changelog b/config/dpkg/changelog index ee4b952..9d9a6a7 100644 --- a/config/dpkg/changelog +++ b/config/dpkg/changelog @@ -1,5 +1,5 @@ -dfwinreg (20240128-1) unstable; urgency=low +dfwinreg (20240210-1) unstable; urgency=low * Auto-generated - -- Log2Timeline maintainers Sun, 28 Jan 2024 13:09:20 +0100 + -- Log2Timeline maintainers Sat, 10 Feb 2024 07:50:58 +0100 diff --git a/dfwinreg/__init__.py b/dfwinreg/__init__.py index 948ab23..d750d67 100644 --- a/dfwinreg/__init__.py +++ b/dfwinreg/__init__.py @@ -5,4 +5,4 @@ provides read-only access to Windows Registry objects. """ -__version__ = '20240128' +__version__ = '20240210' diff --git a/docs/sources/user/Installation-instructions.md b/docs/sources/user/Installation-instructions.md index 104d5dd..16d1c27 100644 --- a/docs/sources/user/Installation-instructions.md +++ b/docs/sources/user/Installation-instructions.md @@ -27,7 +27,7 @@ To deactivate the virtualenv run: deactivate ``` -## Ubuntu 18.04 and 20.04 LTS +## Ubuntu 22.04 LTS To install dfWinReg from the [GIFT Personal Package Archive (PPA)](https://launchpad.net/~gift): @@ -49,14 +49,14 @@ necessary packages for running dfWinReg. l2tbinaries provides the following branches: * main; branch intended for the "packaged release" of dfWinReg and dependencies; +* staging; branch intended for testing pre-releases of dfWinReg; * dev; branch intended for the "development release" of dfWinReg; * testing; branch intended for testing newly created packages. The l2tdevtools project provides [an update script](https://github.com/log2timeline/l2tdevtools/wiki/Update-script) to ease the process of keeping the dependencies up to date. -The script requires [pywin32](https://github.com/mhammond/pywin32/releases) and -[Python WMI](https://pypi.org/project/WMI). +The script requires [pywin32](https://github.com/mhammond/pywin32/releases). To install the release versions of the dependencies run: diff --git a/pyproject.toml b/pyproject.toml index 038528a..ee74093 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [tool.docformatter] black = false -non-cap = ["dfDateTime", "dfImageTools", "dfVFS", "dfWinReg"] +non-cap = ["dfDateTime", "dfImageTools", "dfVFS", "dfWinReg", "dtFabric", "iMessage", "iOS", "iPod", "mDNS"] non-strict = false wrap-summaries = 80 wrap-descriptions = 80 diff --git a/setup.cfg b/setup.cfg index 56fb6d3..103cae5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = dfwinreg -version = 20240128 +version = 20240210 description = Digital Forensics Windows Registry (dfWinReg). long_description = dfWinReg, or Digital Forensics Windows Registry, provides read-only access to Windows Registry objects. The goal of dfWinReg is to provide a generic interface for accessing Windows Registry objects that resembles the Registry key hierarchy as seen on a live Windows system. long_description_content_type = text/plain @@ -22,7 +22,7 @@ install_requires = file:requirements.txt package_dir = dfwinreg = dfwinreg packages = find: -python_requires = >=3.7 +python_requires = >=3.8 [options.package_data] dfwinreg = diff --git a/tox.ini b/tox.ini index 459d602..071a5b4 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py3{7,8,9,10,11,12},coverage,docformatter,docs,lint,wheel +envlist = py3{8,9,10,11,12},coverage,docformatter,docs,lint,wheel [testenv] allowlist_externals = ./run_tests.py @@ -19,7 +19,7 @@ deps = setuptools >= 65 wheel commands = - py3{7,8,9,10,11,12}: ./run_tests.py + py3{8,9,10,11,12}: ./run_tests.py coverage: coverage erase coverage: coverage run --source=dfwinreg --omit="*_test*,*__init__*,*test_lib*" run_tests.py coverage: coverage xml