Skip to content

Commit 28e145b

Browse files
committed
Merge pull request #309 from enthought/update-version
Updates version, author, and author_email metadata.
2 parents bdd9ef0 + 1916cb5 commit 28e145b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

distarray/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
# Distributed under the terms of the BSD License. See COPYING.rst.
55
# ---------------------------------------------------------------------------
66

7+
__version__ = "0.2.0"
8+
79
from distarray.client import DistArray
810
from distarray.context import Context
911
from distarray.functions import *

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@
44
# Distributed under the terms of the BSD License. See COPYING.rst.
55
# -----------------------------------------------------------------------------
66

7-
87
from setuptools import setup, find_packages
98

10-
119
install_requires = [
1210
'ipython',
1311
'numpy',
@@ -16,12 +14,12 @@
1614

1715
metadata = {
1816
'name': 'distarray',
19-
'version': '0.1',
17+
'version': '0.2.0',
2018
'description': 'Distributed Memory Arrays for Python',
2119
'keywords': 'parallel mpi distributed array',
2220
'license': 'New BSD',
23-
'author': 'Brian E. Granger',
24-
'author_email': 'ellisonbg@gmail.com',
21+
'author': 'IPython Development Team and Enthought, Inc.',
22+
'author_email': 'ksmith@enthought.com',
2523
'url': 'https://github.com/enthought/distarray',
2624
'packages': find_packages(),
2725
'install_requires': install_requires

0 commit comments

Comments
 (0)