-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (25 loc) · 927 Bytes
/
pyproject.toml
File metadata and controls
32 lines (25 loc) · 927 Bytes
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
[project]
authors = [{ name = "Scientific Python Developers" }]
name = "spec0-action"
description = "Python code to update the lower bounds of Scientific Python libraries according to SPEC 0"
requires-python = ">= 3.11"
version = "1.0.0"
dependencies = ["packaging>=25.0", "pandas>=2.3.3", "requests>=2.32.5,<3"]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.workspace]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-dependencies]
spec0-action= { path = ".", editable = true }
tomlkit = ">=0.13.3,<0.14"
[tool.pixi.tasks]
update-dependencies = { cmd = ["python", "run_spec0_update.py"] }
generate-schedule = { cmd = ["python", "spec0_versions.py"] }
[tool.pixi.feature.test.tasks]
test = { cmd = ["pytest", "-vvv"] }
[tool.pixi.feature.test.dependencies]
pytest = "*"
[tool.pixi.environments]
test = ["test"]