Skip to content

Commit

Permalink
Merge branch 'release/v0.3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
milcent committed Jan 24, 2021
2 parents f7ff96f + 907bbf6 commit 9f35016
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 deletions.
8 changes: 5 additions & 3 deletions Demo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"### Current version: 0.2.5"
"### Current version: 0.3.3"
]
},
{
Expand All @@ -26,7 +26,9 @@
"metadata": {},
"source": [
"### Benford for python is a Package in PyPi, so you can install with *pip*:\n",
"##### `$ pip install benford_py`"
"##### `$ pip install benford_py`\n",
"### or\n",
"##### `$ pip install benford-py`"
]
},
{
Expand Down Expand Up @@ -2610,4 +2612,4 @@
},
"nbformat": 4,
"nbformat_minor": 4
}
}
2 changes: 1 addition & 1 deletion README-pypi.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If you find *Benford_py* useful in your research, please consider adding the fol

--------------------------------------------------------------------------------

`current version = 0.3.2`
`current version = 0.3.3`

### See [release notes](https://github.com/milcent/benford_py/releases/) for features in this and in older versions

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If you find *Benford_py* useful in your research, please consider adding the fol

--------------------------------------------------------------------------------

`current version = 0.3.2`
`current version = 0.3.3`

### See [release notes](https://github.com/milcent/benford_py/releases/) for features in this and in older versions

Expand Down
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
'''Benfords law module'''
__version__ = "0.3.2"
__version__ = "0.3.3"
2 changes: 1 addition & 1 deletion benford/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@

from .benford import *

__version__ = '0.3.2'
__version__ = '0.3.3'
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Marcel Milcent'

# The full version, including alpha/beta/rc tags
release = '0.3.2'
release = '0.3.3'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
long_description = f.read()

setup(name='benford_py',
version='0.3.2',
version='0.3.3',
description='A library for testing data sets with Bendford\'s Law',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/milcent/benford_py',
download_url='https://github.com/milcent/benford_py/archive/v0.3.2.tar.gz',
download_url='https://github.com/milcent/benford_py/archive/v0.3.3.tar.gz',
author='Marcel Milcent',
author_email='[email protected]',
license='GPLv3.0',
Expand Down

0 comments on commit 9f35016

Please sign in to comment.