-
Notifications
You must be signed in to change notification settings - Fork 3
/
pixi.toml
83 lines (71 loc) · 2.14 KB
/
pixi.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
[project]
channels = ["conda-forge"]
name = "pydiverse.transform"
platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"]
[dependencies]
python = ">=3.10"
pandas = ">=2.0.0" # only required for SQL writing
SQLAlchemy = ">=2.0.0"
pyarrow = ">=11.0.0"
polars = ">=1.6.0"
[host-dependencies]
pip = "*"
hatchling = "*"
[feature.dev.dependencies]
ruff = ">=0.5.6"
pre-commit = ">=3"
pre-commit-hooks = "*"
taplo = "*"
typos = "*"
pixi-pycharm = ">=0.0.6"
pytest = ">=7.1.2"
pytest-xdist = ">=2.5.0"
[feature.release.dependencies]
hatch = ">=1.12.0"
twine = ">=5.1.1"
[feature.duckdb.dependencies]
duckdb = ">=0.8.1"
duckdb-engine = ">=0.9.1"
[feature.postgres.dependencies]
psycopg2 = ">=2.9.3"
[feature.mssql.dependencies]
pyodbc = ">=4.0.35"
[feature.ibm-db]
# ibm-db is not available on Apple Silicon
# https://ibm-data-and-ai.ideas.ibm.com/ideas/DB2CON-I-92
platforms = ["linux-64", "osx-64", "win-64"]
[feature.ibm-db.target.osx.pypi-dependencies]
# ibm_db is not on conda-forge for macOS
# https://github.com/ibmdb/db2drivers/issues/3
ibm-db = ">=3.1.4"
[feature.ibm-db.target.linux.dependencies]
ibm_db = ">=3.1.4"
[feature.ibm-db.target.win.dependencies]
ibm_db = ">=3.1.4"
[feature.ibm-db.dependencies]
ibm_db_sa = ">=0.3.8"
[feature.docs.dependencies]
Sphinx = ">=7.3.7"
furo = ">=2023.5.20"
sphinxcontrib-apidoc = ">=0.3.0"
myst-parser = ">=2.0.0"
sphinx-autosummary-accessors = "2023.4.0"
[feature.docs.tasks]
docs = "cd docs && make html "
readthedocs = "rm -rf $READTHEDOCS_OUTPUT/html && cp -r docs/build/html $READTHEDOCS_OUTPUT/html"
[feature.py310.dependencies]
python = "3.10.*"
[feature.py311.dependencies]
python = "3.11.*"
[feature.py312.dependencies]
python = "3.12.*"
[tasks]
postinstall = "pip install --no-build-isolation --no-deps --disable-pip-version-check -e ."
[environments]
default = ["py312", "dev", "duckdb", "postgres", "mssql"]
py310 = ["py310", "dev", "duckdb", "postgres", "mssql"]
py311 = ["py311", "dev", "duckdb", "postgres", "mssql"]
py312 = ["py312", "dev", "duckdb", "postgres", "mssql"]
py312ibm = ["py312", "dev", "duckdb", "postgres", "mssql", "ibm-db"]
docs = ["docs"]
release = { features = ["release"], no-default-feature = true }