Skip to content

Commit

Permalink
Remove end-of-life Python 3.7 support (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz authored Feb 11, 2024
1 parent f08d3f6 commit b3d081f
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 11 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/test_tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions config/dpkg/changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dfimagetools (20240128-1) unstable; urgency=low
dfimagetools (20240211-1) unstable; urgency=low

* Auto-generated

-- Log2Timeline maintainers <[email protected]> Sun, 28 Jan 2024 17:57:35 +0100
-- Log2Timeline maintainers <[email protected]> Sun, 11 Feb 2024 08:09:36 +0100
2 changes: 1 addition & 1 deletion dfimagetools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"""Collection of tools to process storage media images."""


__version__ = '20240128'
__version__ = '20240211'
2 changes: 1 addition & 1 deletion dfimagetools/scripts/extract_data_streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
8 changes: 8 additions & 0 deletions docs/sources/api/dfimagetools.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
----------------------------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 =
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit b3d081f

Please sign in to comment.