From 4d58eaf1ae8a9100afe51e0f17b8776202a108ad Mon Sep 17 00:00:00 2001 From: Joachim Metz Date: Sat, 10 Feb 2024 08:06:37 +0100 Subject: [PATCH] Removed end-of-life Python 3.7 support --- .github/workflows/test_tox.yml | 2 -- config/dpkg/changelog | 4 ++-- dfvfs/__init__.py | 2 +- dfvfs/analyzer/tsk_analyzer_helper.py | 2 ++ docs/sources/user/Installation-instructions.md | 6 +++--- pyproject.toml | 2 +- setup.cfg | 4 ++-- tox.ini | 4 ++-- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/test_tox.yml b/.github/workflows/test_tox.yml index c693053a..81217c56 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 d2c8c749..3e7830e0 100644 --- a/config/dpkg/changelog +++ b/config/dpkg/changelog @@ -1,5 +1,5 @@ -dfvfs (20240128-1) unstable; urgency=low +dfvfs (20240210-1) unstable; urgency=low * Auto-generated - -- Log2Timeline maintainers Sun, 28 Jan 2024 13:31:12 +0100 + -- Log2Timeline maintainers Sat, 10 Feb 2024 08:05:11 +0100 diff --git a/dfvfs/__init__.py b/dfvfs/__init__.py index b2f3dfb9..db5c9f27 100644 --- a/dfvfs/__init__.py +++ b/dfvfs/__init__.py @@ -6,4 +6,4 @@ types and file formats. """ -__version__ = '20240128' +__version__ = '20240210' diff --git a/dfvfs/analyzer/tsk_analyzer_helper.py b/dfvfs/analyzer/tsk_analyzer_helper.py index 597d8e22..0c93554f 100644 --- a/dfvfs/analyzer/tsk_analyzer_helper.py +++ b/dfvfs/analyzer/tsk_analyzer_helper.py @@ -60,6 +60,8 @@ def GetFormatSpecification(self): # ISO9660 file system signature. format_specification.AddNewSignature(b'CD001', offset=32769) + # UFS file system signature. + # YAFFS file system signature. return format_specification diff --git a/docs/sources/user/Installation-instructions.md b/docs/sources/user/Installation-instructions.md index ac49ddb1..efd3b900 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 dfVFS from the [GIFT Personal Package Archive (PPA)](https://launchpad.net/~gift): @@ -49,14 +49,14 @@ necessary packages for running dfVFS. l2tbinaries provides the following branches: * main; branch intended for the "packaged release" of dfVFS and dependencies; +* staging; branch intended for testing pre-releases of ACStore; * dev; branch intended for the "development release" of dfVFS; * 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 5a5671e2..ee74093b 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", "dtFabric"] +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 869793ce..342f2028 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = dfvfs -version = 20240128 +version = 20240210 description = Digital Forensics Virtual File System (dfVFS). long_description = dfVFS, or Digital Forensics Virtual File System, provides read-only access to file-system objects from various storage media types and file formats. The goal of dfVFS is to provide a generic interface for accessing file-system objects, for which it uses several back-ends that provide the actual implementation of the various storage media types, volume systems and file systems. long_description_content_type = text/plain @@ -22,7 +22,7 @@ install_requires = file:requirements.txt package_dir = dfvfs = dfvfs packages = find: -python_requires = >=3.7 +python_requires = >=3.8 [options.package_data] dfvfs = diff --git a/tox.ini b/tox.ini index 4db297f6..7fcbdb1b 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=dfvfs --omit="*_test*,*__init__*,*test_lib*" run_tests.py coverage: coverage xml