Skip to content

Commit 871d4dd

Browse files
committed
version bumb 1.0rc1
1 parent 4272b97 commit 871d4dd

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

paper/paper.bib

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ @Misc{scipy
99
@misc{zenodo,
1010
author = {Sebastian Müller},
1111
title = {pentapy},
12-
month = mar,
1312
year = 2019,
1413
doi = {10.5281/zenodo.2587158},
1514
url = {https://doi.org/10.5281/zenodo.2587158}

pentapy/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
"""Provide a central version"""
2-
__version__ = "1.0.0.dev0"
1+
"""Provide a central version."""
2+
__version__ = "1.0.0.rc1"

pentapy/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
"""
3-
The core module of pentapy
3+
The core module of pentapy.
44
55
The following functions are provided
66

pentapy/py_solver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
"""
3-
This is a solver for linear equation systems with a penta-diagonal matrix.
3+
A solver for linear equation systems with a penta-diagonal matrix.
44
55
This is the python implementation.
66

pentapy/tools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
"""
3-
The tools module of pentapy
3+
The tools module of pentapy.
44
55
The following functions are provided
66
@@ -193,7 +193,7 @@ def create_banded(mat, up=2, low=2, col_wise=True, dtype=None):
193193

194194

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

0 commit comments

Comments
 (0)