Skip to content

Commit 6cfc602

Browse files
authored
Fix pyramid by pinning setuptools (#1647)
1 parent 80f4a3c commit 6cfc602

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/scripts/install_azure_functions_worker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ ${PIP} install pip-tools build invoke
3434

3535
# Install proto build dependencies
3636
$( cd ${BUILD_DIR}/workers/ && ${PIPCOMPILE} -o ${BUILD_DIR}/requirements.txt )
37-
${PIP} install -r ${BUILD_DIR}/requirements.txt
37+
${PIP} install 'setuptools<82' -r ${BUILD_DIR}/requirements.txt
3838

3939
# Build proto files into pb2 files (invoke handles fixing include paths for the protos)
4040
cd ${BUILD_DIR}/workers/tests && ${INVOKE} -c test_setup build-protos

.github/workflows/benchmarks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
runs-on: ubuntu-24.04
3131
timeout-minutes: 30
3232
strategy:
33+
fail-fast: false
3334
matrix:
3435
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
3536

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ envlist =
6969

7070
# Integration Tests (only run on Linux)
7171
cassandra-datastore_cassandradriver-py38-cassandra032903,
72-
cassandra-datastore_cassandradriver-{py39,py310,py311,py312,pypy311}-cassandralatest,
72+
cassandra-datastore_cassandradriver-{py39,py310,py311,py312}-cassandralatest,
7373
elasticsearchserver07-datastore_elasticsearch-{py38,py39,py310,py311,py312,py313,py314,pypy311}-elasticsearch07,
7474
elasticsearchserver08-datastore_elasticsearch-{py38,py39,py310,py311,py312,py313,py314,pypy311}-elasticsearch08,
7575
firestore-datastore_firestore-{py38,py39,py310,py311,py312,py313,py314},
@@ -392,6 +392,7 @@ deps =
392392
framework_grpc-grpc0162: grpcio<1.63
393393
framework_grpc-grpc0162: grpcio-tools<1.63
394394
framework_grpc-grpc0162: protobuf<4.25
395+
framework_pyramid: setuptools<82
395396
framework_pyramid: routes
396397
framework_pyramid-cornicelatest: cornice
397398
framework_pyramid-Pyramidlatest: Pyramid

0 commit comments

Comments
 (0)