Skip to content

Commit

Permalink
Bump version: 0.4.3 -> 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelaye committed Mar 23, 2019
1 parent 9b852b6 commit d61f34e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion planetpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = 'K.-Michael Aye'
__email__ = 'kmichael.aye@gmail.com'
__version__ = '0.4.3'
__version__ = '0.4.4'
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.3
current_version = 0.4.4
commit = True
tag = True

Expand Down
12 changes: 5 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

try:
from setuptools import setup
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import sys
Expand Down Expand Up @@ -30,17 +30,15 @@

setup(
name='planetpy',
version='0.4.3',
version='0.4.4',
description="Python module to support analysis of planetary data.",
long_description=readme + '\n\n' + history,
author="K.-Michael Aye",
author_email='kmichael.aye@gmail.com',
url='https://github.com/michaelaye/planetpy',
packages=[
'planetpy',
],
package_dir={'planetpy':
'planetpy'},
packages=find_packages(),
# package_dir={'planetpy':
# 'planetpy'},
include_package_data=True,
install_requires=requirements,
license="ISC",
Expand Down

0 comments on commit d61f34e

Please sign in to comment.