mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-11 09:59:19 -04:00
Merge pull request #9045 from ThomasWaldmann/fix-9042-setuptools-min
Some checks are pending
Lint / lint (push) Waiting to run
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / linux (ubuntu-22.04, 3.10, mypy) (push) Blocked by required conditions
CI / linux (ubuntu-22.04, 3.10, py310-fuse2) (push) Blocked by required conditions
CI / linux (ubuntu-22.04, 3.11, docs) (push) Blocked by required conditions
CI / linux (ubuntu-22.04, 3.11, py311-fuse3) (push) Blocked by required conditions
CI / linux (ubuntu-24.04, 3.12, py312-fuse3) (push) Blocked by required conditions
CI / linux (ubuntu-24.04, 3.13, py313-fuse3) (push) Blocked by required conditions
CI / linux (ubuntu-24.04, 3.14, py314-fuse3) (push) Blocked by required conditions
CI / macOS (macos-14, 3.11, py311-none) (push) Blocked by required conditions
CI / windows (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run
Some checks are pending
Lint / lint (push) Waiting to run
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / linux (ubuntu-22.04, 3.10, mypy) (push) Blocked by required conditions
CI / linux (ubuntu-22.04, 3.10, py310-fuse2) (push) Blocked by required conditions
CI / linux (ubuntu-22.04, 3.11, docs) (push) Blocked by required conditions
CI / linux (ubuntu-22.04, 3.11, py311-fuse3) (push) Blocked by required conditions
CI / linux (ubuntu-24.04, 3.12, py312-fuse3) (push) Blocked by required conditions
CI / linux (ubuntu-24.04, 3.13, py313-fuse3) (push) Blocked by required conditions
CI / linux (ubuntu-24.04, 3.14, py314-fuse3) (push) Blocked by required conditions
CI / macOS (macos-14, 3.11, py311-none) (push) Blocked by required conditions
CI / windows (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run
build: require setuptools>=78.1.1 (fixes #9042)
This commit is contained in:
commit
3ebae359ae
2 changed files with 2 additions and 2 deletions
|
|
@ -70,7 +70,7 @@ where = ["src"]
|
|||
"*" = ["*.c", "*.h", "*.pyx"]
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools>=77.0.0", "wheel", "pkgconfig", "Cython>=3.0.3", "setuptools_scm[toml]>=6.2"]
|
||||
requires = ["setuptools>=78.1.1", "wheel", "pkgconfig", "Cython>=3.0.3", "setuptools_scm[toml]>=6.2"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[tool.setuptools_scm]
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
setuptools >=77.0.0
|
||||
setuptools >=78.1.1
|
||||
setuptools_scm
|
||||
pip !=24.2
|
||||
wheel
|
||||
|
|
|
|||
Loading…
Reference in a new issue