https://github.com/adc-connect/adcc
Raw File
Tip revision: 25e247a23cfcc06667dd404e79827a56be75c307 authored by Michael F. Herbst on 13 March 2020, 18:18:57 UTC
Bump version: 0.14.1 → 0.14.2
Tip revision: 25e247a
setup.cfg
[bumpversion]
current_version = 0.14.2
commit = True
tag = True

[bumpversion:file:adcc/__init__.py]

[bumpversion:file:setup.py]

[flake8]
ignore = E241,E266,W503
max-line-length = 82
per-file-ignores = 
	examples/water/data.py:E131,E126,E222,E121,E123,E501
	adccore/**:W,E,F
	adcc/testdata/adcc-testdata/**:E501

[aliases]
test = pytest

[tool:pytest]
addopts = --verbose
filterwarnings = 
	ignore:Using or importing the ABCs from:DeprecationWarning
	ignore:np.asscalar\(a\) is deprecated:DeprecationWarning
	ignore:time.clock has been deprecated:DeprecationWarning
	ignore:invalid escape sequence:DeprecationWarning
norecursedirs = 
	adcc/testdata/adcc-testdata
back to top