From 0fcbb1a61559eb167bc5494f4547e53ef949efc2 Mon Sep 17 00:00:00 2001 From: mcsitter <48606431+mcsitter@users.noreply.github.com> Date: Fri, 25 Oct 2019 15:15:45 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.1=20=E2=86=92=200.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- adnipy/__init__.py | 2 +- setup.cfg | 28 ++++++++++++++-------------- setup.py | 2 +- 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/adnipy/__init__.py b/adnipy/__init__.py index e05c86d..2a7daf9 100644 --- a/adnipy/__init__.py +++ b/adnipy/__init__.py @@ -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 diff --git a/setup.cfg b/setup.cfg index ba66529..de9d869 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.1 +current_version = 0.1.0 commit = True tag = True @@ -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] @@ -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 @@ -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} diff --git a/setup.py b/setup.py index cd0c390..cca49c5 100644 --- a/setup.py +++ b/setup.py @@ -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, )