Skip to content

Commit 0fcbb1a

Browse files
committed
Bump version: 0.0.1 → 0.1.0
1 parent 5a5180b commit 0fcbb1a

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

adnipy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
__author__ = """Maximilian Cosmo Sitter"""
66
__email__ = "msitter@smail.uni-koeln.de"
7-
__version__ = "0.0.1"
7+
__version__ = "0.1.0"
88

99
# Let users know if they're missing any of our hard dependencies
1010
import matplotlib

setup.cfg

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.1
2+
current_version = 0.1.0
33
commit = True
44
tag = True
55

@@ -15,11 +15,11 @@ search = __version__ = "{current_version}"
1515
replace = __version__ = "{new_version}"
1616

1717
[flake8]
18-
exclude =
18+
exclude =
1919
docs
20-
.eggs
21-
.tox
22-
per-file-ignores =
20+
.eggs
21+
.tox
22+
per-file-ignores =
2323
adnipy/__init__.py:F401, E402, I001
2424

2525
[tool:pytest]
@@ -29,7 +29,7 @@ collect_ignore = ['setup.py']
2929
envlist = py{35,36,37}-pandas{23,24,25}, flake8
3030

3131
[travis]
32-
python =
32+
python =
3333
3.7: py37
3434
3.6: py36
3535
3.5: py35
@@ -40,16 +40,16 @@ deps = flake8
4040
commands = flake8 adnipy
4141

4242
[testenv]
43-
setenv =
43+
setenv =
4444
PYTHONPATH = {toxinidir}
45-
deps =
46-
pip==19.3.1
47-
coverage
45+
deps =
46+
pip==19.3.1
47+
coverage
4848
pytest
49-
pandas23: pandas>=0.23,<0.24
50-
pandas24: pandas>=0.24,<0.25
51-
pandas25: pandas>=0.25
52-
commands =
49+
pandas23: pandas>=0.23,<0.24
50+
pandas24: pandas>=0.24,<0.25
51+
pandas25: pandas>=0.25
52+
commands =
5353
pip install -U pip
5454
coverage run -a -m py.test --basetemp={envtmpdir}
5555

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@
4444
test_suite="tests",
4545
tests_require=test_requirements,
4646
url="https://github.com/mcsitter/adnipy",
47-
version="0.0.1",
47+
version="0.1.0",
4848
zip_safe=False,
4949
)

0 commit comments

Comments
 (0)