From 94c06c2ccf4eaaf8a4ea37927f32153bb444b424 Mon Sep 17 00:00:00 2001 From: wolfthefallen Date: Fri, 14 Apr 2017 15:28:35 -0400 Subject: [PATCH] Version 1.7.1 release --- king_phisher/version.py | 2 +- tools/cx_freeze.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/king_phisher/version.py b/king_phisher/version.py index fdca8dcd..5fa14050 100644 --- a/king_phisher/version.py +++ b/king_phisher/version.py @@ -63,7 +63,7 @@ def get_revision(): revision = get_revision() """The git revision identifying the latest commit if available.""" -version_info = collections.namedtuple('version_info', ('major', 'minor', 'micro'))(1, 7, 0) +version_info = collections.namedtuple('version_info', ('major', 'minor', 'micro'))(1, 7, 1) """A tuple representing the version information in the format ('major', 'minor', 'micro')""" version_label = '' diff --git a/tools/cx_freeze.py b/tools/cx_freeze.py index 63d144ed..49a84043 100644 --- a/tools/cx_freeze.py +++ b/tools/cx_freeze.py @@ -40,6 +40,7 @@ import matplotlib import pytz +import requests from mpl_toolkits import basemap from cx_Freeze import setup, Executable @@ -118,6 +119,7 @@ include_files.append((basemap.basemap_datadir, 'mpl-basemap-data')) include_files.append(('data/client/king_phisher', 'king_phisher')) include_files.append((pytz.__path__[0], 'pytz')) +include_files.append((requests.__path__[0], 'requests')) exe_base = 'Win32GUI' if is_debugging_build: