diff --git a/.github/workflows/test_tox.yml b/.github/workflows/test_tox.yml index 5734b06..ab92871 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 065abd2..d76cf34 100644 --- a/config/dpkg/changelog +++ b/config/dpkg/changelog @@ -1,5 +1,5 @@ -dfdatetime (20240128-1) unstable; urgency=low +dfdatetime (20240210-1) unstable; urgency=low * Auto-generated - -- Log2Timeline maintainers Sun, 28 Jan 2024 09:38:26 +0100 + -- Log2Timeline maintainers Sat, 10 Feb 2024 07:26:17 +0100 diff --git a/dfdatetime/__init__.py b/dfdatetime/__init__.py index a9ff9ac..1037e7d 100644 --- a/dfdatetime/__init__.py +++ b/dfdatetime/__init__.py @@ -25,4 +25,4 @@ from dfdatetime import webkit_time -__version__ = '20240128' +__version__ = '20240210' diff --git a/docs/sources/Date-and-time-values.md b/docs/sources/Date-and-time-values.md index 0f2a9e2..ca8d339 100644 --- a/docs/sources/Date-and-time-values.md +++ b/docs/sources/Date-and-time-values.md @@ -84,6 +84,7 @@ Time zone | externally represented, typically UTC ### Format Offset | Size | Description +--- | --- | --- 0 | 4 or 8 | timestamp, little endian integer value containing the number of 100 nanosecond intervals since January 1, 0001 00:00:00.0000000 ### Also see diff --git a/docs/sources/user/Installation-instructions.md b/docs/sources/user/Installation-instructions.md index 6bdf0ed..d1065c3 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 dfDateTime from the [GIFT Personal Package Archive (PPA)](https://launchpad.net/~gift): @@ -49,14 +49,14 @@ necessary packages for running dfDateTime. l2tbinaries provides the following branches: * main; branch intended for the "packaged release" of dfDateTime and dependencies; +* staging; branch intended for testing pre-releases of dfDateTime; * dev; branch intended for the "development release" of dfDateTime; * 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 51fbfa7..ee74093 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [tool.docformatter] black = false -non-cap = ["dfDateTime"] +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 ca89d9e..c5bc47e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = dfdatetime -version = 20240128 +version = 20240210 description = Digital Forensics date and time (dfDateTime). long_description = dfDateTime, or Digital Forensics date and time, provides date and time objects to preserve accuracy and precision. long_description_content_type = text/plain @@ -22,7 +22,7 @@ install_requires = file:requirements.txt package_dir = dfdatetime = dfdatetime packages = find: -python_requires = >=3.7 +python_requires = >=3.8 [options.packages.find] exclude = diff --git a/tox.ini b/tox.ini index a94c11b..71caf39 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=dfdatetime --omit="*_test*,*__init__*,*test_lib*" run_tests.py coverage: coverage xml