Skip to content

Commit 5a35e6c

Browse files
author
ewezy
committed
Add restriction on setuptools
1 parent f4e0223 commit 5a35e6c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

engines/pyfunc-ensembler-job/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ version:
5151
.PHONY: build
5252
build: version
5353
@rm -rf build dist
54-
@pip install "setuptools>=64,<75" "packaging>=23.0" "setuptools_scm>=8" "twine" "wheel"
54+
@pip install "setuptools>=64,<68" "packaging>=23.0" "setuptools_scm>=8" "twine" "wheel"
5555
@if [ "$(VERSION)" = "0.0.0" ]; then \
5656
echo "🔧 Using local turing-sdk source..."; \
5757
sed -i -e "s|turing-sdk.*|turing-sdk @ file://$(abspath ../../sdk)|g" ./requirements.txt; \

engines/pyfunc-ensembler-service/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ version:
4444
.PHONY: build
4545
build: version
4646
@rm -rf build dist
47-
@pip install "setuptools>=64,<75" "packaging>=23.0" "setuptools_scm>=8" "twine" "wheel"
47+
@pip install "setuptools>=64,<68" "packaging>=23.0" "setuptools_scm>=8" "twine" "wheel"
4848
@if [ "$(VERSION)" = "0.0.0" ]; then \
4949
echo "🔧 Using local turing-sdk source..."; \
5050
sed -i -e "s|turing-sdk.*|turing-sdk @ file://$(abspath ../../sdk)|g" ./requirements.txt; \

sdk/requirements.dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
black==22.6.0
2-
setuptools>=21.0.0,<75
2+
setuptools>=21.0.0,<68
33
wheel
44
twine
55
# The next release 8.2.0 of pytest breaks the unit tests

0 commit comments

Comments
 (0)