From 5cc453b7c33f9c073ed12eef170d84fc73cc17ce Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Mon, 1 Feb 2021 17:54:28 +0000 Subject: [PATCH 1/3] Bump the version number for a hotfix --- volatility3/framework/constants/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility3/framework/constants/__init__.py b/volatility3/framework/constants/__init__.py index 5a5e5f1c5d..c04fbdb460 100644 --- a/volatility3/framework/constants/__init__.py +++ b/volatility3/framework/constants/__init__.py @@ -40,7 +40,7 @@ # We use the SemVer 2.0.0 versioning scheme VERSION_MAJOR = 1 # Number of releases of the library with a breaking change VERSION_MINOR = 0 # Number of changes that only add to the interface -VERSION_PATCH = 0 # Number of changes that do not change the interface +VERSION_PATCH = 1 # Number of changes that do not change the interface VERSION_SUFFIX = "" PACKAGE_VERSION = ".".join([str(x) for x in [VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH]]) + VERSION_SUFFIX From bad253d5e496c74abe32861a2baee29f3fb9bf2b Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Mon, 1 Feb 2021 17:55:14 +0000 Subject: [PATCH 2/3] Documentation: Use the README.md for the long description --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index 64d9bf2d15..6b405d441d 100644 --- a/setup.py +++ b/setup.py @@ -6,12 +6,17 @@ from volatility3.framework import constants +with open("README.md", "r", encoding="utf-8") as fh: + long_description = fh.read() + setuptools.setup(name = "volatility3", description = "Memory forensics framework", version = constants.PACKAGE_VERSION, license = "VSL", keywords = "volatility memory forensics framework windows linux volshell", author = "Volatility Foundation", + long_description = long_description, + long_description_content_type = "text/markdown", author_email = "volatility@volatilityfoundation.org", url = "https://volatilityfoundation.org/volatility/", project_urls = { From 0f487e725ccf706113a5743b0abdc2145133203b Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Mon, 1 Feb 2021 18:00:21 +0000 Subject: [PATCH 3/3] Packaging: Further fixes to setup.py --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6b405d441d..ea0ddb8ddf 100644 --- a/setup.py +++ b/setup.py @@ -18,12 +18,13 @@ long_description = long_description, long_description_content_type = "text/markdown", author_email = "volatility@volatilityfoundation.org", - url = "https://volatilityfoundation.org/volatility/", + url = "https://github.com/volatilityfoundation/volatility3/", project_urls = { "Bug Tracker": "https://github.com/volatilityfoundation/volatility3/issues", "Documentation": "https://volatility3.readthedocs.io/", "Source Code": "https://github.com/volatilityfoundation/volatility3", }, + python_requires = '>=3.5.3', include_package_data = True, exclude_package_data = { '': ['development', 'development.*'],