forked from ibis-project/ibis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
521 lines (501 loc) · 18.1 KB
/
pyproject.toml
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
[tool.poetry]
name = "ibis-framework"
version = "8.0.0"
packages = [{ include = "ibis" }]
include = ["ibis/examples/metadata.json", "ibis/examples/CITATIONS.md"]
exclude = [
"ibis/examples/gen_examples.R",
"ibis/examples/gen_registry.py",
"ibis/examples/data",
"ibis/examples/descriptions",
]
homepage = "https://ibis-project.org"
repository = "https://github.com/ibis-project/ibis"
documentation = "https://ibis-project.org"
description = "The portable Python dataframe library"
authors = ["Ibis Maintainers <maintainers@ibis-project.org>"]
maintainers = ["Ibis Maintainers <maintainers@ibis-project.org>"]
license = "Apache-2.0"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Programming Language :: SQL",
"Topic :: Database :: Front-Ends",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: User Interfaces",
]
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/ibis-project/ibis/issues"
[tool.poetry.dependencies]
python = "^3.9"
atpublic = ">=2.3,<5"
bidict = ">=0.22.1,<1"
numpy = ">=1,<2"
pandas = ">=1.2.5,<3"
parsy = ">=2,<3"
pyarrow = ">=2,<16"
pyarrow-hotfix = ">=0.4,<1"
python-dateutil = ">=2.8.2,<3"
pytz = ">=2022.7"
rich = ">=12.4.4,<14"
sqlglot = ">=22.5,<22.6"
toolz = ">=0.11,<1"
typing-extensions = ">=4.3.0,<5"
black = { version = ">=22.1.0,<25", optional = true }
clickhouse-connect = { version = ">=0.5.23,<1", optional = true, extras = [
"arrow",
"numpy",
"pandas",
] }
dask = { version = ">=2022.9.1,<2024.3.0", optional = true, extras = [
"array",
"dataframe",
] }
datafusion = { version = ">=0.6,<37", optional = true }
db-dtypes = { version = ">=0.3,<2", optional = true }
deltalake = { version = ">=0.9.0,<1", optional = true }
duckdb = { version = ">=0.8.1,<1", optional = true }
geopandas = { version = ">=0.6,<1", optional = true }
google-cloud-bigquery = { version = ">=3,<4", optional = true }
google-cloud-bigquery-storage = { version = ">=2,<3", optional = true }
graphviz = { version = ">=0.16,<1", optional = true }
impyla = { version = ">=0.17,<1", optional = true }
oracledb = { version = ">=1.3.1,<3", optional = true }
packaging = { version = ">=21.3,<25", optional = true }
pins = { version = ">=0.8.3,<1", extras = ["gcs"], optional = true }
fsspec = { version = "<2024.3.0", optional = true }
polars = { version = ">=0.19.3,<1", optional = true }
psycopg2 = { version = ">=2.8.4,<3", optional = true }
pydata-google-auth = { version = ">=1.4.0,<2", optional = true }
# we don't use sqlalchemy, but pydruid inadvertently requires it,
# see https://github.com/druid-io/pydruid/issues/313
pydruid = { version = ">=0.6.5,<1", optional = true, extras = ["sqlalchemy"] }
pyexasol = { version = ">=0.25.2,<1", optional = true, extras = ["pandas"] }
pymysql = { version = ">=1,<2", optional = true }
pyodbc = { version = ">=4.0.39,<6", optional = true }
pyspark = { version = ">=3,<4", optional = true }
# used to support posix regexen in the pandas, dask and sqlite backends
regex = { version = ">=2021.7.6", optional = true }
shapely = { version = ">=2,<3", optional = true }
# we don't support arbitrarily old versions of this library due to security
# issues with versions <3.0.2
snowflake-connector-python = { version = ">=3.0.2,<4,!=3.3.0b1", optional = true }
trino = { version = ">=0.321,<1", optional = true }
[tool.poetry.group.dev.dependencies]
codespell = { version = ">=2.2.6,<3", extras = [
"hard-encoding-detection",
"toml",
] }
google-cloud-storage = ">=2.7.0,<3"
ipython = ">=8.7.0,<9"
poetry-plugin-export = ">=1.6.0,<2"
poetry-dynamic-versioning = ">=0.18.0,<2"
pre-commit = ">=3.1,<4"
pydeps = ">=1.12.7,<2"
pyinstrument = ">=4.5.1,<5"
ruff = ">=0.1.8"
tqdm = ">=4.66.1,<5"
[tool.poetry.group.test.dependencies]
filelock = ">=3.7.0,<4"
hypothesis = ">=6.58.0,<7"
packaging = ">=21.3,<25"
pytest = ">=8.0.2,<9"
pytest-benchmark = ">=3.4.1,<5"
pytest-clarity = ">=1.0.1,<2"
pytest-cov = ">=3.0.0,<5"
pytest-httpserver = ">=1.0.5,<2"
pytest-mock = ">=3.6.1,<4"
pytest-randomly = ">=3.10.1,<4"
pytest-repeat = ">=0.9.1,<0.10"
pytest-snapshot = ">=0.9.0,<1"
pytest-xdist = ">=2.3.0,<4"
requests = ">=2,<3"
tomli = ">=2.0.1,<3"
[tool.poetry.group.docs.dependencies]
altair = { version = ">=5.0.1,<6", python = ">=3.10,<3.13" }
distributed = { version = ">=2022.9.1", python = ">=3.10,<3.13" }
ipykernel = { version = ">=6.25.1,<7", python = ">=3.10,<3.13" }
itables = { version = ">=1.6.3,<2.1", python = ">=3.10,<3.13" }
nbclient = { version = ">=0.8.0,<1", python = ">=3.10,<3.13" }
plotly = { version = ">=5.16.1,<6", python = ">=3.10,<3.13" }
plotnine = { version = ">=0.12.2,<1", python = ">=3.10,<3.13" }
py-cpuinfo = { version = ">=9,<10", python = ">=3.10,<3.13" }
quartodoc = { version = ">=0.6.1,<1", python = ">=3.10,<3.13" }
requests = { version = ">=2,<3", python = ">=3.10,<3.13" }
scikit-learn = { version = ">=1.3,<2", python = ">=3.10,<3.13" }
seaborn = { version = ">=0.12.2,<1", python = ">=3.10,<3.13" }
leafmap = { version = ">=0.29.6,<0.31", python = ">=3.10,<3.13" }
lonboard = { version = "==0.4.0", python = ">=3.10,<3.13" }
[tool.poetry.extras]
# generate the `all` extra using nix run '.#gen-all-extras'
all = [
"black",
"clickhouse-connect",
"dask",
"datafusion",
"db-dtypes",
"deltalake",
"duckdb",
"fsspec",
"geopandas",
"google-cloud-bigquery",
"google-cloud-bigquery-storage",
"graphviz",
"impyla",
"oracledb",
"packaging",
"pins",
"polars",
"psycopg2",
"pydata-google-auth",
"pydruid",
"pyexasol",
"pymysql",
"pyodbc",
"pyspark",
"regex",
"shapely",
"snowflake-connector-python",
"trino",
]
bigquery = [
"db-dtypes",
"google-cloud-bigquery",
"google-cloud-bigquery-storage",
"pydata-google-auth",
]
clickhouse = ["clickhouse-connect"]
dask = ["dask", "regex"]
datafusion = ["datafusion"]
druid = ["pydruid"]
duckdb = ["duckdb"]
exasol = ["pyexasol"]
flink = []
geospatial = ["geopandas", "shapely"]
impala = ["impyla"]
mssql = ["pyodbc"]
mysql = ["pymysql"]
oracle = ["oracledb", "packaging"]
pandas = ["regex"]
polars = ["polars", "packaging"]
postgres = ["psycopg2"]
pyspark = ["pyspark", "packaging"]
snowflake = ["snowflake-connector-python", "packaging"]
sqlite = ["regex"]
risingwave = ["psycopg2"]
trino = ["trino"]
# non-backend extras
visualization = ["graphviz"]
decompiler = ["black"]
deltalake = ["deltalake"]
examples = ["pins", "fsspec"]
[tool.poetry.plugins."ibis.backends"]
bigquery = "ibis.backends.bigquery"
clickhouse = "ibis.backends.clickhouse"
dask = "ibis.backends.dask"
datafusion = "ibis.backends.datafusion"
druid = "ibis.backends.druid"
duckdb = "ibis.backends.duckdb"
exasol = "ibis.backends.exasol"
flink = "ibis.backends.flink"
impala = "ibis.backends.impala"
mysql = "ibis.backends.mysql"
mssql = "ibis.backends.mssql"
oracle = "ibis.backends.oracle"
pandas = "ibis.backends.pandas"
polars = "ibis.backends.polars"
postgres = "ibis.backends.postgres"
risingwave = "ibis.backends.risingwave"
pyspark = "ibis.backends.pyspark"
snowflake = "ibis.backends.snowflake"
sqlite = "ibis.backends.sqlite"
trino = "ibis.backends.trino"
[tool.pytest.ini_options]
doctest_optionflags = [
"NORMALIZE_WHITESPACE",
"IGNORE_EXCEPTION_DETAIL",
"ELLIPSIS",
]
xfail_strict = true
addopts = [
"--strict-markers",
"--strict-config",
"--benchmark-disable",
"--benchmark-group-by=name",
"--benchmark-sort=name",
]
norecursedirs = [
"**/snapshots",
".benchmarks",
".direnv",
".git",
".github",
".hypothesis",
".pytest_cache",
".streamlit",
"LICENSES",
"ci",
"conda-lock",
"dev",
"docker",
"docs",
"nix",
"result*",
]
filterwarnings = [
# fail on any warnings that are not explicitly matched below
"error",
# pyspark uses a deprecated pandas API
"ignore:is_datetime64tz_dtype is deprecated and will be removed in a future version:DeprecationWarning",
# pyspark and impala leave sockets open
"ignore:Exception ignored in:",
# dask
"ignore:Using the ``in`` operator to test for membership in Series is deprecated:FutureWarning",
"ignore:In a future version of pandas, a length 1 tuple will be returned when iterating over a groupby:FutureWarning",
"ignore:index is deprecated and will be removed in a future release:FutureWarning",
"ignore:`meta` is not specified:UserWarning",
"ignore:Concatenating dataframes with unknown divisions:UserWarning",
"ignore:Possible nested set at position:FutureWarning",
'ignore:\s+You did not provide metadata:UserWarning',
"ignore:Minimal version of pyarrow will soon be increased:FutureWarning",
# Dask deprecation warning - switch to dask-expr
"ignore:The current Dask DataFrame implementation is deprecated:DeprecationWarning",
# numpy by way of dask
'ignore:np\.find_common_type is deprecated:DeprecationWarning',
# pandas
"ignore:Boolean Series key will be reindexed:UserWarning",
'ignore:Using \.astype to convert from timezone-(naive|aware) dtype:FutureWarning',
"ignore:The default dtype for empty Series will be 'object':FutureWarning",
# pandas 1.5.x
"ignore:iteritems is deprecated and will be removed in a future version:FutureWarning",
'ignore:Passing unit-less datetime64 dtype to \.astype is deprecated:FutureWarning',
'ignore:The default value of numeric_only in DataFrameGroupBy\.sum is deprecated:FutureWarning',
# numpy
"ignore:Creating an ndarray from ragged nested sequences:",
'ignore:`np\.bool` is a deprecated alias for the builtin `bool`:DeprecationWarning',
# numpy, coming from a pandas call
'ignore:In the future `np\.bool` will be defined as the corresponding NumPy scalar:FutureWarning',
# pandas by way of polars when comparing arrays
'ignore:The truth value of an empty array is ambiguous.:DeprecationWarning',
# druid
'ignore:Dialect druid.rest will not make use of SQL compilation caching:',
# ibis
'ignore:`(Base)?Backend.database` is deprecated:FutureWarning',
# spark
"ignore:distutils Version classes are deprecated:DeprecationWarning",
"ignore:The distutils package is deprecated and slated for removal:DeprecationWarning",
"ignore:In Python .*, it is preferred .* type hints .* UDF:UserWarning",
"ignore:`np.object` is a deprecated alias for the builtin `object`:DeprecationWarning",
# windows
"ignore:getargs.* The 'u' format is deprecated:DeprecationWarning",
# google
"ignore:Deprecated call to `pkg_resources\\.declare_namespace\\('.*'\\):DeprecationWarning",
# pyspark on python 3.11
"ignore:typing\\.io is deprecated:DeprecationWarning",
# warnings from google's use of the cgi module
"ignore:'cgi' is deprecated and slated for removal in Python 3\\.13:DeprecationWarning",
# warnings from google's use of pkg_resources
"ignore:pkg_resources is deprecated as an API:DeprecationWarning",
# snowflake vendors an older version requests
"ignore:'urllib3\\.contrib\\.pyopenssl' module is deprecated and will be removed in a future release of urllib3:DeprecationWarning",
# apache-beam
"ignore:the imp module is deprecated in favour of importlib:DeprecationWarning",
# pytest raises a syntax error when encountering this from *any* module, including third party modules
"ignore:invalid escape sequence:DeprecationWarning",
# geopandas raises usr warning on geometry column
"ignore:Geometry is in a geographic CRS",
# `is_sparse` deprecation was addressed in pyarrow 13.0.0 (see https://github.com/apache/arrow/pull/35366),
# but flink requires apache-beam<2.49, which caps its pyarrow dependency (see https://github.com/apache/beam/blob/v2.48.0/sdks/python/setup.py#L144)
"ignore:is_sparse is deprecated and will be removed in a future version:FutureWarning",
"ignore:is_sparse is deprecated and will be removed in a future version:DeprecationWarning",
# google-api-core
"ignore:Please install grpcio-status to obtain helpful grpc error messages.",
# dateutil tz
'ignore:datetime\.datetime\.utcfromtimestamp\(\) is deprecated and scheduled for removal:DeprecationWarning',
# types using custom tp_new are deprecated in python 3.12
"ignore:Type .+ uses PyType_Spec with a metaclass that has custom tp_new:DeprecationWarning",
]
empty_parameter_set_mark = "fail_at_collect"
markers = [
"backend: tests specific to a backend",
"benchmark: benchmarks",
"core: tests that do not required a backend",
"examples: tests that exercise examples",
"geospatial: tests for geospatial functionality",
"xfail_version: backend tests that for a specific version of a dependency",
"notimpl: functionality that isn't implemented in ibis",
"notyet: for functionality that isn't implemented in a backend",
"never: tests for functionality that a backend is likely to never implement",
"broken: test has exposed existing broken functionality",
"bigquery: BigQuery tests",
"clickhouse: ClickHouse tests",
"dask: Dask tests",
"datafusion: Apache Datafusion tests",
"druid: Apache Druid tests",
"duckdb: DuckDB tests",
"exasol: ExasolDB tests",
"flink: Flink tests",
"impala: Apache Impala tests",
"mysql: MySQL tests",
"mssql: MS SQL Server tests",
"oracle: Oracle tests",
"pandas: Pandas tests",
"polars: Polars tests",
"postgres: PostgreSQL tests",
"risingwave: Risingwave tests",
"pyspark: PySpark tests",
"snowflake: Snowflake tests",
"sqlite: SQLite tests",
"trino: Trino tests",
"tpch: TPC-H tests",
]
[tool.pydeps]
exclude = ["__future__", "collections", "os", "re", "sys"]
verbose = 0
pylib = false
show_dot = false
no_dot = true
show_deps = true
[tool.ruff]
line-length = 88
respect-gitignore = true
exclude = [".direnv", "result-*", "*_py310.py", "decompiled.py"]
target-version = "py39"
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"BLE", # flake8-blind-except
"C4", # comprehensions
"D", # pydocstyle
"E", # pycodestyle
"EXE", # flake8-executable
"F", # pyflakes
"FA", # flake8-future-annotations
"G", # flake8-logging-format
"FLY", # flynt (format string conversion)
"I", # isort
"ICN", # flake8-import-conventions
"INP", # flake8-no-pep420 (implicit namespace packages)
"ISC", # flake8-implicit-str-concat
"PGH", # pygrep-hooks
"PIE", # flake8-pie
"PL", # pylint
"RET", # flake8-return
"RUF", # ruff-specific rules
"SIM", # flake8-simplify
"T10", # flake8-debugger
"T20", # flake8-print
"TCH", # flake8-type-checking
"TID", # flake8-tidy-imports
"UP", # pyupgrade
"W", # pycodestyle
"YTT", # flake8-2020
]
ignore = [
"B028", # required stacklevel argument to warn
"B904", # raise from e or raise from None in exception handlers
"C408", # dict(...) as literal
"D100", # public module
"D101", # public class
"D102", # public method
"D103", # public function
"D104", # public package
"D105", # magic methods
"D106", # nested class
"D107", # init
"D202", # blank lines after function docstring
"D203", # blank line before class docstring
"D213", # Multi-line docstring summary should start at the second line
"D401", # Imperative mood
"D402", # First line should not be the function's signature
"D413", # Blank line required after last section
"E501", # line-too-long, this is automatically enforced by ruff format
"E731", # lambda-assignment
"ISC001", # single line implicit string concat, handled by ruff format
"PGH003", # blanket-type-ignore
"PLC0105", # covariant type parameters should have a _co suffix
"PLR0124", # name compared with self, e.g., a == a
"PLR0911", # too many return statements
"PLR0912", # too many branches
"PLR0913", # too many arguments
"PLR0915", # too many statements
"PLR2004", # forces everything to be a constant
"PLW2901", # overwriting loop variable
"RET504", # unnecessary-assign, these are useful for debugging
"RET505", # superfluous-else-return, stylistic choice
"RET506", # superfluous-else-raise, stylistic choice
"RET507", # superfluous-else-continue, stylistic choice
"RET508", # superfluous-else-break, stylistic choice
"RUF005", # splat instead of concat
"RUF012", # Mutable class attributes should be annotated with `typing.ClassVar`
"SIM102", # nested ifs
"SIM108", # convert everything to ternary operator
"SIM114", # combine `if` branches using logical `or` operator
"SIM116", # dictionary instead of `if` statements
"SIM117", # nested with statements
"SIM118", # remove .keys() calls from dictionaries
"SIM300", # yoda conditions
"UP007", # Optional[str] -> str | None
]
# none of these codes will be automatically fixed by ruff
unfixable = [
"T201", # print statements
"F401", # unused imports
"RUF100", # unused noqa comments
"F841", # unused variables
]
[tool.ruff.lint.pyupgrade]
keep-runtime-typing = true
[tool.ruff.lint.isort]
required-imports = ["from __future__ import annotations"]
[tool.ruff.lint.per-file-ignores]
"*test*.py" = [
"D", # ignore all docstring lints in tests
]
"{docs,ci}/**/*.py" = ["INP001"]
"{ci/release/verify_release,docs/**/*_impl}.py" = [
"T201",
] # prints output using `print`
"docs/**/{datafusion,polars}_*.py" = ["T201"] # prints output using `print`
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 88
[tool.coverage.run]
branch = true
source = ["ibis"]
[tool.coverage.report]
exclude_lines = [
"if self.debug:",
"pragma: no cover",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
ignore_errors = true
omit = [
"*_version.py",
"*tests*",
"ibis/interactive.py",
"ibis/examples/gen_registry.py",
]
[tool.distutils.bdist_wheel]
# universal = true is for projects that support py2 and py3, and do not have C
# extensions
universal = false
[tool.poetry-dynamic-versioning]
enable = true
dirty = true
style = "pep440"
pattern = '^(?P<base>\d+(\.\d+)*)'
# index=0 bumps the major version, to handle backports that occur after a breaking change commit
format-jinja = "{% if distance == 0 %}{{ base }}{% else %}{{ bump_version(base, index=0) }}.dev{{ distance }}{% endif %}"
[build-system]
requires = ["poetry-core>=1.1.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"