Skip to content

Commit

Permalink
0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Nov 24, 2015
1 parent 35136aa commit 800a7de
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
10 changes: 3 additions & 7 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,9 @@
# built documents.
#
# The short X.Y version.
try:
src_dir = os.path.realpath(os.path.dirname(os.path.dirname(__file__)))
sys.path.insert(0, src_dir)
from scout import __version__
except ImportError:
# TODO: fixme.
__version__ = '0.3.1'
src_dir = os.path.realpath(os.path.dirname(os.path.dirname(__file__)))
sys.path.insert(0, src_dir)
from scout import __version__
version = __version__
# The full version, including alpha/beta/rc tags.
release = __version__
Expand Down
2 changes: 2 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
flask
peewee>=2.7.3
2 changes: 1 addition & 1 deletion scout.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""
__author__ = 'Charles Leifer'
__kitty__ = 'Huey'
__version__ = '0.3.1'
__version__ = '0.3.2'

try:
from functools import reduce
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import scout
VERSION = scout.__version__
except ImportError:
VERSION = '0.3.1'
VERSION = '0.3.2'

setup(
name='scout',
Expand Down

0 comments on commit 800a7de

Please sign in to comment.