Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cffi==2.0.0
click==8.3.2
colorlog==6.10.1
coverage==7.13.5
cryptography==46.0.5
cryptography==46.0.6
Flask==3.1.3
gcovr==8.4
imutils==0.5.4
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/Dockerfile.checkin
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ RUN apt-get update -y && apt-get upgrade -y && \
apt-get clean && rm -rf /var/lib/apt/lists/* && \
echo "/usr/local/lib" >> /etc/ld.so.conf.d/all-libs.conf && ldconfig && \
python3 -m pip install --no-cache-dir "numpy>=${NUMPY_MIN_VERSION},<2.0.0" "protobuf==5.${PROTOBUF_VERSION}" \
"coverage==7.13.5" "cryptography==46.0.5"
"coverage==7.13.5" "cryptography>=46.0.6"

# COVERAGE TESTING
WORKDIR /vdms
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/setup_vdms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ make install

# INSTALL PYTHON PACKAGES
python -m pip install --no-cache-dir "numpy>=${NUMPY_MIN_VERSION},<2.0.0" "coverage>=7.3.1" \
"protobuf==5.${PROTOBUF_VERSION}" "cryptography==46.0.5"
"protobuf==5.${PROTOBUF_VERSION}" "cryptography>=46.0.6"


# INSTALL VALIJSON
Expand Down
2 changes: 1 addition & 1 deletion docker/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ RUN apt-get update -y && apt-get upgrade -y && \
apt-get clean && rm -rf /var/lib/apt/lists/* && \
echo "/usr/local/lib" >> /etc/ld.so.conf.d/all-libs.conf && ldconfig && \
python3 -m pip install --no-cache-dir "numpy>=${NUMPY_MIN_VERSION},<2.0.0" "protobuf==5.${PROTOBUF_VERSION}" \
"coverage==7.13.5" "cryptography==46.0.5"
"coverage==7.13.5" "cryptography>=46.0.6"

# VDMS
WORKDIR /vdms
Expand Down
2 changes: 1 addition & 1 deletion docs/Install.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ alias python3=/usr/bin/python3.x
Now that python is setup, now install Numpy and also install the coverage and cryptography packages if interested in running the Python unit tests.
```bash
python3 -m pip install --upgrade pip
python3 -m pip install --no-cache-dir "numpy>=1.26.4,<2.0.0" "coverage==7.13.5" "cryptography==46.0.5"
python3 -m pip install --no-cache-dir "numpy>=1.26.4,<2.0.0" "coverage==7.13.5" "cryptography>=46.0.6"
```
<br>

Expand Down
Loading