Skip to content

Commit 90ed24b

Browse files
committed
Bump version to 0.7.8 and update email
1 parent 92f0cc8 commit 90ed24b

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

drmaa/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
Documentation is hosted on ReadTheDocs: http://drmaa-python.readthedocs.org/
2828
2929
:author: Enrico Sirola ([email protected])
30-
:author: Dan Blanchard ([email protected])
30+
:author: Dan Blanchard ([email protected])
3131
"""
3232

3333
from __future__ import absolute_import, print_function, unicode_literals

drmaa/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# -----------------------------------------------------------
1919
#
2020
# Author: Enrico Sirola <[email protected]>
21-
# Author: Dan Blanchard <[email protected]>
21+
# Author: Dan Blanchard <[email protected]>
2222

2323
"""
2424
internal helpers

drmaa/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
This module exists solely for version information so I only have to change it
2020
in one place. Based on the suggestion `here. <http://bit.ly/16LbuJF>`_
2121
22-
:author: Dan Blanchard ([email protected])
22+
:author: Dan Blanchard ([email protected])
2323
'''
2424

25-
__version__ = '0.7.7'
25+
__version__ = '0.7.8'
2626
VERSION = tuple(int(x) for x in __version__.split('.'))

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# -----------------------------------------------------------
1717
#
1818
# Author: Enrico Sirola <[email protected]>
19-
# Author: Dan Blanchard <[email protected]>
19+
# Author: Dan Blanchard <[email protected]>
2020

2121
from setuptools import setup, find_packages
2222

@@ -36,7 +36,7 @@ def readme():
3636
packages=packages,
3737
package_data=package_data,
3838
author="Dan Blanchard",
39-
author_email="[email protected]",
39+
author_email="[email protected]",
4040
description="a python DRMAA library",
4141
long_description=readme(),
4242
license="BSD",

travis/install_sge.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This script installs and configures a Sun Grid Engine installation for use
33
# on a Travis instance.
44
#
5-
# Written by Dan Blanchard ([email protected]), September 2013
5+
# Written by Dan Blanchard ([email protected]), September 2013
66

77
cd travis
88
sudo apt-get update -qq

0 commit comments

Comments
 (0)