Skip to content

Commit

Permalink
Set the version to 0.1.7 final
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroSteiner committed Feb 19, 2015
1 parent f16a37e commit a61998d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion king_phisher/client/graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#

import datetime
import sys

from king_phisher import ua_parser
from king_phisher import utilities
Expand All @@ -50,7 +51,7 @@
has_matplotlib = False
"""Whether the :py:mod:`matplotlib` module is available."""
else:
if utilities.check_requirements(['matplotlib>=1.4.1']):
if not getattr(sys, 'frozen', False) and utilities.check_requirements(['matplotlib>=1.4.1']):
has_matplotlib = False
else:
has_matplotlib = True
Expand Down
2 changes: 1 addition & 1 deletion king_phisher/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
version_info = collections.namedtuple('version_info', ['major', 'minor', 'micro'])(0, 1, 7)
"""A tuple representing the version information in the format ('major', 'minor', 'micro')"""

version_label = 'beta'
version_label = ''
"""A version lable such as alpha or beta."""
version = "{0}.{1}.{2}".format(version_info.major, version_info.minor, version_info.micro)
"""A string representing the full version information."""
Expand Down
2 changes: 1 addition & 1 deletion tests/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from king_phisher import testing
from king_phisher.utilities import *

SINGLE_QUOTE_STRING_ESCAPED = """C:\\\\Users\\\\Alice\\\\Desktop\\\\Alice\\\'s Secret File.txt"""
SINGLE_QUOTE_STRING_ESCAPED = """C:\\\\Users\\\\Alice\\\\Desktop\\\\Alice\\'s Secret File.txt"""
SINGLE_QUOTE_STRING_UNESCAPED = """C:\\Users\\Alice\\Desktop\\Alice's Secret File.txt"""

# function used for testing the cache object
Expand Down
2 changes: 1 addition & 1 deletion tools/cx_freeze.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@

build_exe_options = dict(
compressed=False,
packages=['email', 'gi', 'jinja2', 'matplotlib', 'msgpack', 'paramiko'],
packages=['cairo', 'email', 'gi', 'jinja2', 'matplotlib', 'msgpack', 'paramiko'],
include_files=include_files
)

Expand Down

0 comments on commit a61998d

Please sign in to comment.