Revision 3b017865aecf45e74cc91628a27a2496a835e6e0 authored by Kevin Sheppard on 19 January 2021, 08:27:08 UTC, committed by GitHub on 19 January 2021, 08:27:08 UTC
Update Python 3.9 build requirement
2 parent s da89e91 + a2b9def
Raw File
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:
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