Skip to content

Commit

Permalink
version bumb 1.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb committed Sep 17, 2019
1 parent 4272b97 commit 871d4dd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion paper/paper.bib
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ @Misc{scipy
@misc{zenodo,
author = {Sebastian Müller},
title = {pentapy},
month = mar,
year = 2019,
doi = {10.5281/zenodo.2587158},
url = {https://doi.org/10.5281/zenodo.2587158}
Expand Down
4 changes: 2 additions & 2 deletions pentapy/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Provide a central version"""
__version__ = "1.0.0.dev0"
"""Provide a central version."""
__version__ = "1.0.0.rc1"
2 changes: 1 addition & 1 deletion pentapy/core.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
"""
The core module of pentapy
The core module of pentapy.
The following functions are provided
Expand Down
2 changes: 1 addition & 1 deletion pentapy/py_solver.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
"""
This is a solver for linear equation systems with a penta-diagonal matrix.
A solver for linear equation systems with a penta-diagonal matrix.
This is the python implementation.
Expand Down
4 changes: 2 additions & 2 deletions pentapy/tools.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
"""
The tools module of pentapy
The tools module of pentapy.
The following functions are provided
Expand Down Expand Up @@ -193,7 +193,7 @@ def create_banded(mat, up=2, low=2, col_wise=True, dtype=None):


def create_full(mat, up=2, low=2, col_wise=True):
"""Create a (n x n) Matrix from a given banded matrix
"""Create a (n x n) Matrix from a given banded matrix.
The given Matrix has to be a flattend matrix.
Either in a column-wise flattend form::
Expand Down

0 comments on commit 871d4dd

Please sign in to comment.