Skip to content

Commit

Permalink
Version 1.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfthefallen committed Apr 14, 2017
1 parent fc394fe commit 94c06c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion king_phisher/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ''
Expand Down
2 changes: 2 additions & 0 deletions tools/cx_freeze.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@

import matplotlib
import pytz
import requests
from mpl_toolkits import basemap
from cx_Freeze import setup, Executable

Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 94c06c2

Please sign in to comment.