Skip to content

Commit

Permalink
update versioning to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kecnry committed Oct 1, 2020
1 parent 9870415 commit 24eb519
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nparray/__init__.py
Expand Up @@ -5,7 +5,7 @@

from distutils.version import LooseVersion

__version__ = '1.1.0'
__version__ = '1.2.0'
version = __version__

# allow isinstance(obj, nparray.ndarray) to be similar to numpy
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -6,14 +6,14 @@
long_description = fh.read()

setup(name='nparray',
version='1.1.0',
version='1.2.0',
description='High-Level Wrappers for Building and Manipulating Numpy Arrays',
long_description=long_description,
long_description_content_type="text/markdown",
author='Kyle Conroy',
author_email='kyleconroy@gmail.com',
url='https://www.github.com/kecnry/nparray',
download_url = 'https://github.com/kecnry/nparray/tarball/1.1.0',
download_url = 'https://github.com/kecnry/nparray/tarball/1.2.0',
packages=['nparray'],
install_requires=['numpy>=1.10'],
classifiers=[
Expand Down

0 comments on commit 24eb519

Please sign in to comment.