diff --git a/androguard/__init__.py b/androguard/__init__.py index 618cbf9c..3fad17f3 100644 --- a/androguard/__init__.py +++ b/androguard/__init__.py @@ -1,4 +1,4 @@ # The current version of Androguard # Please use only this variable in any scripts, # to keep the version number the same everywhere. -__version__ = "4.0.1" +__version__ = "4.0.2" diff --git a/pyproject.toml b/pyproject.toml index 98b21e72..07d29b67 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "androguard" description = "Androguard is a full python tool to play with Android files." authors = ["desnos "] -version = "4.0.1" +version = "4.0.2" license = "Apache Licence, Version 2.0" readme = "README.md" homepage = "https://github.com/androguard/androguard" @@ -12,7 +12,7 @@ packages = [ ] [tool.poetry.dependencies] -python = "^3.6" +python = "^3.9" pygments = ">=2.3.1" lxml = ">=4.3.0" colorama = ">=0.4.1" diff --git a/requirements.txt b/requirements.txt index 13c4f87f..a5c178f3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,4 +9,4 @@ mutf8 dataset frida loguru -apkInspector>=1.1.7 \ No newline at end of file +apkInspector>=1.2.1 \ No newline at end of file diff --git a/setup.py b/setup.py index fd6b06d8..4aba401d 100644 --- a/setup.py +++ b/setup.py @@ -22,14 +22,13 @@ setup( 'console_scripts': [ 'androguard = androguard.cli.cli:entry_point'] }, setup_requires=['setuptools'], - python_requires='>=3.6', + python_requires='>=3.9', classifiers=[ 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Security', 'Topic :: Software Development',