Skip to content

Commit

Permalink
Merge pull request #1199 from volatilityfoundation/issues/python-3.8
Browse files Browse the repository at this point in the history
Core: Bump the version and minium python to support pip
  • Loading branch information
ikelos authored Jul 14, 2024
2 parents d334525 + 61e3e89 commit ccaa473
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ more details.

## Requirements

Volatility 3 requires Python 3.7.0 or later. To install the most minimal set of dependencies (some plugins will not work) use a command such as:
Volatility 3 requires Python 3.7.3 or later. To install the most minimal set of dependencies (some plugins will not work) use a command such as:

```shell
pip3 install -r requirements-minimal.txt
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readme = "README.md"
authors = [
{ name = "Volatility Foundation", email = "[email protected]" },
]
requires-python = ">=3.7.0"
requires-python = ">=3.7.3"
license = { text = "VSL" }
dynamic = ["dependencies", "optional-dependencies", "version"]

Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import sys
import zipfile

required_python_version = (3, 7, 0)
required_python_version = (3, 7, 3)
if (
sys.version_info.major != required_python_version[0]
or sys.version_info.minor < required_python_version[1]
Expand Down
2 changes: 1 addition & 1 deletion volatility3/framework/constants/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# We use the SemVer 2.0.0 versioning scheme
VERSION_MAJOR = 2 # Number of releases of the library with a breaking change
VERSION_MINOR = 7 # Number of changes that only add to the interface
VERSION_PATCH = 1 # Number of changes that do not change the interface
VERSION_PATCH = 2 # Number of changes that do not change the interface
VERSION_SUFFIX = ""

# TODO: At version 2.0.0, remove the symbol_shift feature
Expand Down

0 comments on commit ccaa473

Please sign in to comment.