Skip to content

Commit

Permalink
Bump version: 0.0.1 → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mcsitter committed Oct 25, 2019
1 parent 5a5180b commit 0fcbb1a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion adnipy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__author__ = """Maximilian Cosmo Sitter"""
__email__ = "msitter@smail.uni-koeln.de"
__version__ = "0.0.1"
__version__ = "0.1.0"

# Let users know if they're missing any of our hard dependencies
import matplotlib
Expand Down
28 changes: 14 additions & 14 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.1
current_version = 0.1.0
commit = True
tag = True

Expand All @@ -15,11 +15,11 @@ search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[flake8]
exclude =
exclude =
docs
.eggs
.tox
per-file-ignores =
.eggs
.tox
per-file-ignores =
adnipy/__init__.py:F401, E402, I001

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

[travis]
python =
python =
3.7: py37
3.6: py36
3.5: py35
Expand All @@ -40,16 +40,16 @@ deps = flake8
commands = flake8 adnipy

[testenv]
setenv =
setenv =
PYTHONPATH = {toxinidir}
deps =
pip==19.3.1
coverage
deps =
pip==19.3.1
coverage
pytest
pandas23: pandas>=0.23,<0.24
pandas24: pandas>=0.24,<0.25
pandas25: pandas>=0.25
commands =
pandas23: pandas>=0.23,<0.24
pandas24: pandas>=0.24,<0.25
pandas25: pandas>=0.25
commands =
pip install -U pip
coverage run -a -m py.test --basetemp={envtmpdir}

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/mcsitter/adnipy",
version="0.0.1",
version="0.1.0",
zip_safe=False,
)

0 comments on commit 0fcbb1a

Please sign in to comment.