mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-23 02:41:14 -03:00
sphinx==9.1.0 depends on Python>=3.12, so change our pinning policy to fit. Note we still support Python 3.9 in user-facing code. Steps: 1. edit updatecli.d/python.yml 2. remove bad "uv lock" from build_tools/update-dependencies.sh (didn't respect exclude-newer) 3. updatecli apply --config updatecli.d/python.yml 4. uv lock --upgrade --exclude-newer="$(date --date='7 days ago' --iso-8601)"
17 lines
493 B
TOML
17 lines
493 B
TOML
[project]
|
|
name = "fish-shell"
|
|
version = "0.0.0"
|
|
# NOTE: versions for Python and Sphinx are specified for reproducibility.
|
|
# Lower versions will work too.
|
|
requires-python = ">=3.13" # updatecli.d/python.yml
|
|
dependencies = []
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"sphinx>=9.1", # updatecli.d/python.yml
|
|
"sphinx-markdown-builder",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
sphinx-markdown-builder = { git = "https://github.com/liran-funaro/sphinx-markdown-builder", rev = "7c4daaf39a92f93deec948ecc1772e23bac44588" }
|