Skip to content

Commit

Permalink
Merge pull request #51 from den4uk/dev
Browse files Browse the repository at this point in the history
3.6.1
  • Loading branch information
den4uk authored Oct 31, 2021
2 parents 9b5345e + 874f04c commit 50c4785
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
===

### 3.6.1 (2021-10-31)

- Bugfix for the package gui modules not being included when building.


### 3.6.0 (2021-10-30)

- GUI restructured
Expand Down
2 changes: 1 addition & 1 deletion andriller/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '3.6.0'
__version__ = '3.6.1'
__app_name__ = 'Andriller CE'
__package_name__ = 'andriller'
__website__ = "https://github.com/den4uk/andriller"
Expand Down
5 changes: 3 additions & 2 deletions pyinst.spec
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ app_name = 'AndrillerCE'
block_cipher = None

ONE_FILE = False if sys.platform == 'win32' else True
DEBUG = False


def get_binaries():
Expand Down Expand Up @@ -62,12 +63,12 @@ if ONE_FILE:
a.datas,
[],
name='andriller',
debug=False,
debug=DEBUG,
bootloader_ignore_signals=False,
strip=False,
upx=True,
runtime_tmpdir=None,
console=False,
console=DEBUG,
icon=os.path.join('andriller', 'res', get_icon()),
)
if sys.platform == 'darwin':
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[bumpversion]
commit = True
current_version = 3.6.0
current_version = 3.6.1
files = andriller/__init__.py
tag = True
tag_name = {new_version}
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import os.path
from setuptools import setup
from setuptools import setup, find_packages
from andriller import __version__, __website__, __package_name__

req = os.path.join(os.path.dirname(__file__), 'requirements.txt')
Expand All @@ -12,14 +12,14 @@


setup(
name='andriller',
name=__package_name__,
scripts=['andriller-gui.py'],
version=__version__,
description='Andriller CE | Android Forensic Tools',
author='Denis Sazonov',
author_email='[email protected]',
url=__website__,
packages=[__package_name__],
packages=find_packages(exclude=['tests*']),
license='MIT License',
keywords="andriller android forensic forensics adb dfir".split(),
long_description=long_description,
Expand All @@ -31,5 +31,5 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
python_requires=">=3.6,<3.10",
zip_safe=True)

0 comments on commit 50c4785

Please sign in to comment.