Skip to content

Commit

Permalink
Merge tag 'v0.1.1'
Browse files Browse the repository at this point in the history
Bump version: 0.1.0 → 0.1.1
  • Loading branch information
agstephens committed Oct 12, 2020
2 parents 41d1c4b + d9d152b commit 979d3b3
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 20 deletions.
4 changes: 2 additions & 2 deletions roocs_utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__contact__ = "eleanor.smith@stfc.ac.uk"
__copyright__ = "Copyright 2018 United Kingdom Research and Innovation"
__license__ = "BSD - see LICENSE file in top-level package directory"
__version__ = "0.1.0"
__version__ = "0.1.1"

from roocs_utils.config import get_config
CONFIG = get_config()
CONFIG = get_config()
30 changes: 14 additions & 16 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.1.1
commit = True
tag = True

[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
search = version="{current_version}"
replace = version="{new_version}"

[bumpversion:file:roocs_utils/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bdist_wheel]
universal = 1

[flake8]
exclude =
exclude =
.git,
docs,
build,
.eggs,
tests/mini-esgf-data
max-line-length = 88
max-complexity = 12
ignore =
ignore =
C901
E203
E231
Expand All @@ -33,25 +33,23 @@ ignore =
F403
W503
W504
F841
F541
F821
F841
F541
F821

[aliases]
# Define setup.py command aliases here
test = pytest

[tool:pytest]
;collect_ignore = ["setup.py"]
addopts = --verbose
filterwarnings =
filterwarnings =
ignore::UserWarning
markers =
markers =
online: mark test to need internet connection

[pylint]
ignore = docs,tests
disable =
disable =
too-many-arguments,
too-few-public-methods,
invalid-name,
invalid-name,
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@

__author__ = "Elle Smith"
__contact__ = "eleanor.smith@stfc.ac.uk"
__version__ = ""
__copyright__ = "Copyright 2018 United Kingdom Research and Innovation"
__license__ = "BSD - see LICENSE file in top-level package directory"

Expand Down Expand Up @@ -97,6 +96,6 @@
extras_require={"docs": docs_requirements},
package_data={'roocs_utils': ['etc/roocs.ini']},
url='https://github.com/roocs/roocs_utils',
version=__version__,
version="0.1.1",
zip_safe=False,
)

0 comments on commit 979d3b3

Please sign in to comment.