1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
|
# See the docstring in versioneer.py for instructions. Note that you must
# re-run 'versioneer.py setup' after changing this section, and commit the
# resulting files.
[versioneer]
VCS = git
style = pep440
versionfile_source = pandas/_version.py
versionfile_build = pandas/_version.py
tag_prefix = v
parentdir_prefix = pandas-
[flake8]
max-line-length = 88
ignore =
E203, # space before : (needed for how black formats slicing)
W503, # line break before binary operator
W504, # line break after binary operator
E402, # module level import not at top of file
E731, # do not assign a lambda expression, use a def
E741, # ambiguous variable name 'l' (GH#34150)
C406, # Unnecessary list literal - rewrite as a dict literal.
C408, # Unnecessary dict call - rewrite as a literal.
C409, # Unnecessary list passed to tuple() - rewrite as a tuple literal.
S001 # found modulo formatter (incorrect picks up mod operations)
exclude =
doc/sphinxext/*.py,
doc/build/*.py,
doc/temp/*.py,
.eggs/*.py,
versioneer.py,
env # exclude asv benchmark environments from linting
[flake8-rst]
bootstrap =
import numpy as np
import pandas as pd
np # avoiding error when importing again numpy or pandas
pd # (in some cases we want to do it to show users)
ignore = E402, # module level import not at top of file
W503, # line break before binary operator
# Classes/functions in different blocks can generate those errors
E302, # expected 2 blank lines, found 0
E305, # expected 2 blank lines after class or function definition, found 0
# We use semicolon at the end to avoid displaying plot objects
E703, # statement ends with a semicolon
E711, # comparison to none should be 'if cond is none:'
exclude =
doc/source/development/contributing_docstring.rst
[tool:pytest]
# sync minversion with setup.cfg & install.rst
minversion = 4.0.2
testpaths = pandas
doctest_optionflags = NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL ELLIPSIS
# addopts = --strict-data-files
xfail_strict = True
filterwarnings =
error:Sparse:FutureWarning
error:The SparseArray:FutureWarning
junit_family=xunit2
[coverage:run]
branch = False
omit =
*/tests/*
pandas/_typing.py
pandas/_version.py
plugins = Cython.Coverage
[coverage:report]
ignore_errors = False
show_missing = True
omit =
pandas/_version.py
# Regexes for lines to exclude from consideration
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain about missing debug-only code:
def __repr__
if self\.debug
# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
raise NotImplementedError
AbstractMethodError
# Don't complain if non-runnable code isn't run:
if 0:
if __name__ == .__main__.:
if TYPE_CHECKING:
[coverage:html]
directory = coverage_html_report
# To be kept consistent with "Import Formatting" section in contributing.rst
[isort]
known_pre_libs = pandas._config
known_pre_core = pandas._libs,pandas._typing,pandas.util._*,pandas.compat,pandas.errors
known_dtypes = pandas.core.dtypes
known_post_core = pandas.tseries,pandas.io,pandas.plotting
sections = FUTURE,STDLIB,THIRDPARTY,PRE_LIBS,PRE_CORE,DTYPES,FIRSTPARTY,POST_CORE,LOCALFOLDER
known_first_party = pandas
known_third_party = announce,dateutil,docutils,flake8,git,hypothesis,jinja2,lxml,matplotlib,numpy,numpydoc,pkg_resources,pyarrow,pytest,pytz,requests,scipy,setuptools,sphinx,sqlalchemy,validate_docstrings,validate_unwanted_patterns,yaml,odf
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
combine_as_imports = True
line_length = 88
force_sort_within_sections = True
skip_glob = env,
skip = pandas/__init__.py
[mypy]
ignore_missing_imports=True
no_implicit_optional=True
check_untyped_defs=True
strict_equality=True
warn_redundant_casts = True
warn_unused_ignores = True
[mypy-pandas.tests.*]
check_untyped_defs=False
[mypy-pandas.conftest]
ignore_errors=True
[mypy-pandas.tests.tools.test_to_datetime]
ignore_errors=True
[mypy-pandas._testing]
check_untyped_defs=False
[mypy-pandas._version]
check_untyped_defs=False
[mypy-pandas.core.arrays.interval]
check_untyped_defs=False
[mypy-pandas.core.base]
check_untyped_defs=False
[mypy-pandas.core.computation.expr]
check_untyped_defs=False
[mypy-pandas.core.computation.expressions]
check_untyped_defs=False
[mypy-pandas.core.computation.pytables]
check_untyped_defs=False
[mypy-pandas.core.computation.scope]
check_untyped_defs=False
[mypy-pandas.core.dtypes.cast]
check_untyped_defs=False
[mypy-pandas.core.frame]
check_untyped_defs=False
[mypy-pandas.core.generic]
check_untyped_defs=False
[mypy-pandas.core.groupby.generic]
check_untyped_defs=False
[mypy-pandas.core.groupby.grouper]
check_untyped_defs=False
[mypy-pandas.core.groupby.ops]
check_untyped_defs=False
[mypy-pandas.core.indexes.base]
check_untyped_defs=False
[mypy-pandas.core.indexes.datetimes]
check_untyped_defs=False
[mypy-pandas.core.indexes.interval]
check_untyped_defs=False
[mypy-pandas.core.indexes.multi]
check_untyped_defs=False
[mypy-pandas.core.internals.blocks]
check_untyped_defs=False
[mypy-pandas.core.internals.concat]
check_untyped_defs=False
[mypy-pandas.core.internals.construction]
check_untyped_defs=False
[mypy-pandas.core.internals.managers]
check_untyped_defs=False
[mypy-pandas.core.missing]
check_untyped_defs=False
[mypy-pandas.core.ops.docstrings]
check_untyped_defs=False
[mypy-pandas.core.reshape.merge]
check_untyped_defs=False
[mypy-pandas.core.strings]
check_untyped_defs=False
[mypy-pandas.core.window.common]
check_untyped_defs=False
[mypy-pandas.core.window.ewm]
check_untyped_defs=False
[mypy-pandas.core.window.expanding]
check_untyped_defs=False
[mypy-pandas.core.window.rolling]
check_untyped_defs=False
[mypy-pandas.io.clipboard]
check_untyped_defs=False
[mypy-pandas.io.excel._base]
check_untyped_defs=False
[mypy-pandas.io.excel._openpyxl]
check_untyped_defs=False
[mypy-pandas.io.excel._util]
check_untyped_defs=False
[mypy-pandas.io.excel._xlwt]
check_untyped_defs=False
[mypy-pandas.io.formats.console]
check_untyped_defs=False
[mypy-pandas.io.formats.css]
check_untyped_defs=False
[mypy-pandas.io.formats.excel]
check_untyped_defs=False
[mypy-pandas.io.formats.format]
check_untyped_defs=False
[mypy-pandas.io.formats.style]
check_untyped_defs=False
[mypy-pandas.io.html]
check_untyped_defs=False
[mypy-pandas.io.json._json]
check_untyped_defs=False
[mypy-pandas.io.parsers]
check_untyped_defs=False
[mypy-pandas.io.pytables]
check_untyped_defs=False
[mypy-pandas.io.sas.sas_xport]
check_untyped_defs=False
[mypy-pandas.io.sas.sas7bdat]
check_untyped_defs=False
[mypy-pandas.io.stata]
check_untyped_defs=False
[mypy-pandas.plotting._matplotlib.converter]
check_untyped_defs=False
[mypy-pandas.plotting._matplotlib.core]
check_untyped_defs=False
[mypy-pandas.plotting._matplotlib.misc]
check_untyped_defs=False
[mypy-pandas.tseries.holiday]
check_untyped_defs=False
|