Skip to content

Commit dd1b6b5

Browse files
Merge pull request #1034 from mantidproject/fix_for_failing_deploy
Pin setuptools to 75.1.0
2 parents 596aab4 + 6cc8874 commit dd1b6b5

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

conda/conda_build_config.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
python:
22
- 3.12
3+
4+
setuptools:
5+
- 75.1.0

conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ requirements:
2121
build:
2222
- python {{ python }}
2323
- qtpy
24-
- setuptools
24+
- setuptools {{ setuptools }}
2525
- versioningit
2626

2727
run:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools >= 65.0.0",
2+
requires = ["setuptools == 75.1.0", # >= 65.0.0",
33
"wheel",
44
"versioningit",]
55
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)