https://github.com/bashtage/arch
Raw File
Tip revision: 72acfb6548dddb31af10584dff3028d803bb2e68 authored by Kevin Sheppard on 05 February 2021, 12:27:18 UTC
Merge pull request #446 from bashtage/final-fix
Tip revision: 72acfb6
setup.cfg
[metadata]
description-file = README.md
license_file = LICENSE.md

[flake8]
# Leave at 99 for now
max-line-length = 99
ignore = E203,W503,BLK100

[versioneer]
VCS = git
style = pep440
versionfile_source = arch/_version.py
versionfile_build = arch/_version.py
tag_prefix =
parentdir_prefix = arch-

[tool:pytest]
minversion = 3.06
testpaths = arch
addopts = --strict
filterwarnings =
    ignore:`formatargspec`:DeprecationWarning:statsmodels
    ignore:Using or importing:DeprecationWarning
    ignore:Session._key_changed is deprecated:DeprecationWarning
    error:Support for multi-dimensional:DeprecationWarning
    error:Mutating unit root tests is deprecated:FutureWarning
    error:invalid value encountered in cos:RuntimeWarning
    error:invalid value encountered in log:RuntimeWarning
    error:divide by zero encountered in double_scalars:RuntimeWarning
    error:Lag selection has changed:DeprecationWarning
    error:More than 20 figures have been opened:RuntimeWarning:
    error:invalid value encountered in sqrt:RuntimeWarning:
    error:Inequality constraints incompatible::
    error:Parameters are not consistent with a::
    error:overflow encountered in double_scalars:RuntimeWarning:
    error:overflow encountered in multiply:RuntimeWarning:
markers =
    slow: mark a test as slow


[isort]
sections=FUTURE,COMPAT,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
known_first_party=arch
known_third_party=Cython,numpy,matplotlib,pandas,patsy,pytest,statsmodels,seaborn
known_compat=arch.compat.*,setuptools,setuptools.*
combine_as_imports=True
force_sort_within_sections=True
force_to_top=True
profile=black

[mypy]
ignore_missing_imports=True
no_implicit_optional=True
strict_equality=True
disallow_untyped_defs=True
disallow_incomplete_defs=True

[mypy-arch.conftest]
check_untyped_defs=False
disallow_untyped_defs=False

[mypy-arch._version]
check_untyped_defs=False
disallow_untyped_defs=False


[mypy-arch.vendor.*]
check_untyped_defs=False
disallow_untyped_defs=False
disallow_incomplete_defs=False

[mypy-arch.tests.*]
check_untyped_defs=False
disallow_untyped_defs=False
disallow_incomplete_defs=False

[mypy-versioneer]
check_untyped_defs=False
disallow_untyped_defs=False
disallow_incomplete_defs=False
back to top