diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4f1509200..9f5790cdd8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ on: env: NODE_VERSION: "18" # needs to be also updated in .nvmrc PYTHON_VERSION: "3.11" - PIP_VERSION: "24.2" # stick to it while https://github.com/pypa/pip/issues/13046 is not fixed, needs to be also updated in scripts/define_variable.sh + PIP_VERSION: "24.3.1" # needs to be also updated in scripts/define_variable.sh MARIADB_VERSION: "10.4.10" COVERALLS_VERSION: "3.3.1" # check if Coverage needs to be also updated in requirements-ci.txt TYPESENSE_VERSION: "27.0" # needs to be also updated in scripts/define_variable.sh diff --git a/scripts/define_variable.sh b/scripts/define_variable.sh index 861cc1e4ee..9cb082e31a 100644 --- a/scripts/define_variable.sh +++ b/scripts/define_variable.sh @@ -9,7 +9,7 @@ if [[ $ZDS_VENV_VERSION == "" ]]; then fi if [[ $ZDS_PIP_VERSION == "" ]]; then - ZDS_PIP_VERSION="24.2" # stick to it while https://github.com/pypa/pip/issues/13046 is not fixed, needs to be also updated in .github/workflows/ci.yml + ZDS_PIP_VERSION="24.3.1" # needs to be also updated in .github/workflows/ci.yml fi ZDS_NODE_VERSION=$(cat $ZDSSITE_DIR/.nvmrc)