Skip to content

Commit c4bf347

Browse files
committed
Update test environment and packaging tools
1 parent be2f5e9 commit c4bf347

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changelog
22

3+
9.7.3 Update Python dependencies and packaging tools
4+
35
9.7.2 Apply Django security update
46
Update Python dependencies and packaging tools
57

deploy/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM python:3.12.8-slim
1+
FROM python:3.12.9-slim
22

33
ENV PYTHONDONTWRITEBYTECODE=1
44
ENV PYTHONUNBUFFERED=1
5-
ENV PIP_VERSION='24.3.1'
5+
ENV PIP_VERSION='25.0.1'
66
ENV SETUPTOOLS_VERSION='75.8.0'
77
ENV PIP_TOOLS_VERSION='7.4.1'
88
# NB: Version 15.1.0 is installed on RHEL
9-
ENV VE_VERSION='20.24.5'
9+
ENV VE_VERSION='20.27.1'
1010

1111
# Update system packages and install dependencies
1212
RUN apt update -y && \

deploy/Dockerfile-rhel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ RUN yum update -y && \
4646
python3.12-wheel \
4747
zip
4848

49-
ENV PIP_VERSION='24.3.1'
49+
ENV PIP_VERSION='25.0.1'
5050
ENV SETUPTOOLS_VERSION='75.8.0'
5151
ENV PIP_TOOLS_VERSION='7.4.1'
52-
ENV VE_VERSION='20.24.5'
52+
ENV VE_VERSION='20.27.1'
5353
ENV FABRIC_VERSION='1.15.0'
5454

5555
RUN pip3 -V

deploy/deploy-centos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ pip3.8 install Fabric==1.15.0 # NB: v1.15.0 supports Python 2, & 3.6, 3.7, & 3.8
6565

6666
pip3.8 install mod_wsgi==4.9.4 # As per app servers
6767
ls /usr/local/lib64/python3.8/site-packages/mod_wsgi/server/
68-
pip3.8 install virtualenv==20.24.5 # As per app servers
68+
pip3.8 install virtualenv==20.27.1 # As per app servers
6969

7070
ln -s /usr/local/bin/virtualenv /usr/bin/virtualenv-3.8
7171

deploy/deploy-rhel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ pip3.12 install Fabric==1.15.0 # NB: v1.15.0 supports Python 2, & 3.6, 3.7, & 3.
8484

8585
pip3.12 install mod_wsgi==4.9.4 # As per app servers
8686
ls /usr/local/lib64/python3.12/site-packages/mod_wsgi/server/
87-
pip3.12 install virtualenv==20.24.5 # As per app servers
87+
pip3.12 install virtualenv==20.27.1 # As per app servers
8888

8989
ln -s /usr/local/bin/virtualenv /usr/bin/virtualenv-3.12
9090

deploy/fabfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
# Tools not handled by pip-tools and/or requirements installs using pip
2020
# Also update pip version in tests/build-test-env.sh and Dockerfile
21-
PIP_VERSION = '24.3.1'
21+
PIP_VERSION = '25.0.1'
2222
SETUPTOOLS_VERSION = '75.8.0'
2323
PIP_TOOLS_VERSION = '7.4.1'
2424

tests/build-test-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ echo "Install Fabric"
3131
pip3 install fabric==1.15.0 # NB: v1.15.0 supports Python 2, & 3.6, 3.7, & 3.8
3232

3333
echo "Install virtualenv"
34-
pip3 install virtualenv==20.24.5 # NB: Version 15.1.0 is installed on RHEL
34+
pip3 install virtualenv==20.27.1 # As per RHEL app servers
3535

3636
echo "Install wheel"
3737
sudo apt-get install -y python3-wheel-whl

0 commit comments

Comments
 (0)