Skip to content

Commit d10957d

Browse files
committed
Release v0.2.7
1 parent c2f1697 commit d10957d

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
11
# FMFlow
2+
3+
[![](https://img.shields.io/pypi/v/fmflow.svg?label=PyPI&style=flat-square)](https://pypi.org/pypi/fmflow/)
4+
[![](https://img.shields.io/pypi/pyversions/fmflow.svg?label=Python&color=yellow&style=flat-square)](https://pypi.org/pypi/fmflow/)
5+
[![Travis](https://img.shields.io/travis/fmlo-dev/fmflow/master.svg?label=Travis%20CI&style=flat-square)](https://travis-ci.org/fmlo-dev/fmflow)
6+
[![License](https://img.shields.io/badge/license-MIT-blue.svg?label=License&style=flat-square)](LICENSE)
7+
8+
:zap: Data analysis package for FMLO

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Akio Taniguchi'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '0.2.6'
25+
release = '0.2.7'
2626

2727

2828
# -- General configuration ---------------------------------------------------

fmflow/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# coding: utf-8
22

3-
__version__ = '0.2.6'
4-
__author__ = 'astropenguin'
3+
__version__ = '0.2.7'
4+
__author__ = 'Akio Taniguchi'
55

66
from . import utils
77
from .core import *

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = fmflow
3-
version = 0.2.6
4-
author = astropenguin
3+
version = 0.2.7
4+
author = Akio Taniguchi
55
author_email = taniguchi@a.phys.nagoya-u.ac.jp
66
url = https://github.com/fmlo-dev/fmflow
77
description = Data analysis package for FMLO

tests/test_metadata.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
def test_version():
55
"""Make sure the version is valid."""
6-
assert fm.__version__ == '0.2.6'
6+
assert fm.__version__ == '0.2.7'
77

88

99
def test_author():
1010
"""Make sure the author is valid."""
11-
assert fm.__author__ == 'astropenguin'
11+
assert fm.__author__ == 'Akio Taniguchi'

0 commit comments

Comments
 (0)