Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/scripts/install_azure_functions_worker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ${PIP} install pip-tools build invoke

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

# Build proto files into pb2 files (invoke handles fixing include paths for the protos)
cd ${BUILD_DIR}/workers/tests && ${INVOKE} -c test_setup build-protos
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
runs-on: ubuntu-24.04
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]

Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ envlist =

# Integration Tests (only run on Linux)
cassandra-datastore_cassandradriver-py38-cassandra032903,
cassandra-datastore_cassandradriver-{py39,py310,py311,py312,pypy311}-cassandralatest,
cassandra-datastore_cassandradriver-{py39,py310,py311,py312}-cassandralatest,
elasticsearchserver07-datastore_elasticsearch-{py38,py39,py310,py311,py312,py313,py314,pypy311}-elasticsearch07,
elasticsearchserver08-datastore_elasticsearch-{py38,py39,py310,py311,py312,py313,py314,pypy311}-elasticsearch08,
firestore-datastore_firestore-{py38,py39,py310,py311,py312,py313,py314},
Expand Down Expand Up @@ -392,6 +392,7 @@ deps =
framework_grpc-grpc0162: grpcio<1.63
framework_grpc-grpc0162: grpcio-tools<1.63
framework_grpc-grpc0162: protobuf<4.25
framework_pyramid: setuptools<82
framework_pyramid: routes
framework_pyramid-cornicelatest: cornice
framework_pyramid-Pyramidlatest: Pyramid
Expand Down
Loading