diff --git a/.github/workflows/test_tox.yml b/.github/workflows/test_tox.yml index 403d3c8..93dbe45 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 747e12b..42e1ec0 100644 --- a/config/dpkg/changelog +++ b/config/dpkg/changelog @@ -1,5 +1,5 @@ -dfimagetools (20240128-1) unstable; urgency=low +dfimagetools (20240211-1) unstable; urgency=low * Auto-generated - -- Log2Timeline maintainers Sun, 28 Jan 2024 17:57:35 +0100 + -- Log2Timeline maintainers Sun, 11 Feb 2024 08:09:36 +0100 diff --git a/dfimagetools/__init__.py b/dfimagetools/__init__.py index 70a08c9..88ce822 100644 --- a/dfimagetools/__init__.py +++ b/dfimagetools/__init__.py @@ -2,4 +2,4 @@ """Collection of tools to process storage media images.""" -__version__ = '20240128' +__version__ = '20240211' diff --git a/dfimagetools/scripts/extract_data_streams.py b/dfimagetools/scripts/extract_data_streams.py index 1b770c9..3545b19 100755 --- a/dfimagetools/scripts/extract_data_streams.py +++ b/dfimagetools/scripts/extract_data_streams.py @@ -142,7 +142,7 @@ def Main(): '--partitions command line argument.')) print('') - volume_scanner_options.partitions = [filter_generator.partition] + volume_scanner_options.partitions = [filter_generator.partition] entry_lister = file_entry_lister.FileEntryLister( mediator=mediator, use_aliases=options.use_aliases) diff --git a/docs/sources/api/dfimagetools.rst b/docs/sources/api/dfimagetools.rst index 98485e5..bc217b0 100644 --- a/docs/sources/api/dfimagetools.rst +++ b/docs/sources/api/dfimagetools.rst @@ -69,6 +69,14 @@ dfimagetools.file\_entry\_lister module :undoc-members: :show-inheritance: +dfimagetools.path\_filters module +--------------------------------- + +.. automodule:: dfimagetools.path_filters + :members: + :undoc-members: + :show-inheritance: + dfimagetools.path\_resolver module ---------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 8db75a2..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"] +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 b879036..8048d85 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = dfimagetools -version = 20240128 +version = 20240211 description = Storage media image tools long_description = Collection of tools to process storage media images. long_description_content_type = text/plain @@ -22,7 +22,7 @@ install_requires = file:requirements.txt package_dir = dfimagetools = dfimagetools packages = find: -python_requires = >=3.7 +python_requires = >=3.8 [options.packages.find] exclude = diff --git a/tox.ini b/tox.ini index f1ae759..df0e4e0 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=dfimagetools --omit="*_test*,*__init__*,*test_lib*" run_tests.py coverage: coverage xml