Skip to content

Commit

Permalink
'1.5.0 → 1.6.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
pauliacomi committed May 8, 2019
1 parent e32b60e commit 096640f
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ pyGAPS (Python General Adsorption Processing Suite) is a framework for adsorptio
:target: https://www.repostatus.org/#active
:alt: Project Status: Active – The project has reached a stable, usable state and is being actively developed.

.. |commits-since| image:: https://img.shields.io/github/commits-since/pauliacomi/pygaps/v1.5.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/pauliacomi/pygaps/v1.6.0.svg
:alt: Commits since latest release
:target: https://github.com/pauliacomi/pygaps/compare/v1.5.0...master
:target: https://github.com/pauliacomi/pygaps/compare/v1.6.0...master

.. |docs| image:: https://readthedocs.org/projects/pygaps/badge/?style=flat
:target: https://readthedocs.org/projects/pygaps
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def __getattr__(cls, name):
year = '2018'
author = 'Paul Iacomi'
copyright = '{0}, {1}'.format(year, author)
version = release = '1.5.0'
version = release = '1.6.0'

# Add any paths that contain templates here, relative to this directory.
templates_path = ['.']
Expand Down
38 changes: 19 additions & 19 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.5.0
current_version = 1.6.0
commit = True
tag = False
message = '{current_version} → {new_version}'
Expand Down Expand Up @@ -44,18 +44,18 @@ not_skip = __init__.py
skip = migrations

[tool:pytest]
norecursedirs =
norecursedirs =
.git
.tox
.env
dist
build
migrations
python_files =
python_files =
test_*.py
*_test.py
tests.py
addopts =
addopts =
-ra
--ignore=docs/conf.py
--ignore=setup.py
Expand All @@ -72,45 +72,45 @@ precision = 2
omit = *migrations*

[coverage:paths]
source =
source =
src
*/site-packages

[coverage:run]
branch = False
source =
source =
src
omit =
omit =
*/tests/*
parallel = true

[coverage:report]
exclude_lines =
exclude_lines =
pragma: no cover

def __repr__
if self\.debug

raise AssertionError
raise NotImplementedError

if 0:
if __name__ == .__main__.:

[check-manifest]
ignore =
.travis.yml
.github
.github/*
ignore =
.travis.yml
.github
.github/*

[matrix]
python_versions =
python_versions =
py35
py36
py37
dependencies =
coverage_flags =
dependencies =
coverage_flags =
cover: true
environment_variables =
environment_variables =
-

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def read(*names, **kwargs):

setup(
name='pygaps',
version='1.5.0',
version='1.6.0',
license='MIT license',
description='A framework for processing adsorption data for porous materials',
long_description='%s' % (
Expand Down
2 changes: 1 addition & 1 deletion src/pygaps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

__author__ = 'Paul A. Iacomi'
__docformat__ = 'restructuredtext'
__version__ = '1.5.0'
__version__ = '1.6.0'

# isort:skip_file

Expand Down

0 comments on commit 096640f

Please sign in to comment.