diff --git a/.github/workflows/run-django-test.yml b/.github/workflows/run-django-test.yml index da98d210..6473c24b 100644 --- a/.github/workflows/run-django-test.yml +++ b/.github/workflows/run-django-test.yml @@ -7,8 +7,7 @@ on: - demo_stable - prod_stable pull_request: - branches: - - python-package-updates + types: [review_requested] workflow_dispatch: jobs: diff --git a/.github/workflows/run-fabric-test.yml b/.github/workflows/run-fabric-test.yml index 81d9919c..f99f431f 100644 --- a/.github/workflows/run-fabric-test.yml +++ b/.github/workflows/run-fabric-test.yml @@ -7,8 +7,7 @@ on: - demo_stable - prod_stable pull_request: - branches: - - python-package-updates + types: [review_requested] workflow_dispatch: jobs: diff --git a/CHANGELOG b/CHANGELOG index 8f00dbc4..6b48c422 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +8.4.1 Apply Python updates + Update GitHub actions + 8.4.0 TMMA-417: Reduce creation of spam users accounts Apply Python updates TMMA-440: Add support for regenerating requirements file in Docker environment diff --git a/deploy/Dockerfile b/deploy/Dockerfile index 4382bed3..26c24e30 100644 --- a/deploy/Dockerfile +++ b/deploy/Dockerfile @@ -1,9 +1,9 @@ FROM python:3.8.17-slim -ENV PIP_VERSION='23.1.2' +ENV PIP_VERSION='23.2.1' ENV SETUPTOOLS_VERSION='68.0.0' -ENV PIP_TOOLS_VERSION='6.14.0' -ENV VE_VERSION='20.13.0' +ENV PIP_TOOLS_VERSION='7.2.0' +ENV VE_VERSION='20.24.2' # Update system packages and install dependencies RUN apt update -y && \ diff --git a/deploy/fabfile.py b/deploy/fabfile.py index 45d03165..62078864 100644 --- a/deploy/fabfile.py +++ b/deploy/fabfile.py @@ -21,9 +21,9 @@ # Tools not handled by pip-tools and/or requirements installs using pip # Also update tests/run-django-tests.sh -PIP_VERSION = '23.1.2' +PIP_VERSION = '23.2.1' SETUPTOOLS_VERSION = '68.0.0' -PIP_TOOLS_VERSION = '6.14.0' +PIP_TOOLS_VERSION = '7.2.0' def _add_file_local(path, contents, use_local_mode):