Skip to content

Commit

Permalink
satisfy codacy constraints: explicit pip packages minor versions
Browse files Browse the repository at this point in the history
  • Loading branch information
peedy2495 committed Feb 6, 2025
1 parent 71cf261 commit 6e5353b
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 35 deletions.
36 changes: 18 additions & 18 deletions deployment/docker/runner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -87,26 +87,26 @@ RUN export MITOGEN_VERSION=$(curl -s https://api.github.com/repos/mitogen-hq/mit
mkdir -p ${VIRTUAL_ENV} && \
python3 -m venv ${VIRTUAL_ENV} --system-site-packages && \
source ${VIRTUAL_ENV}/bin/activate && \
pip3 install --upgrade pip>=25 \
pip3 install --upgrade pip==25.0 \
ansible==${ANSIBLE_VERSION} \
mitogen==${MITOGEN_VERSION} \
appdirs>=1.4 \
baron>=0.10 \
boto3>=1.36 \
botocore>=1.36 \
cffi>=1.17 \
cryptography>=44 \
Jinja2>=3 \
jmespath>=1 \
MarkupSafe>=3 \
packaging>=24 \
pycparser>=2 \
pywinrm>=0.5 \
PyYAML>=6 \
redbaron>=0.9 \
requests>=2 \
resolvelib>=1 \
rply>=0.7 \
appdirs==1.4.4 \
baron==0.10.1 \
boto3==1.36.14 \
botocore==1.36.14 \
cffi==1.17.1 \
cryptography==44.0.0 \
Jinja2==3.1.5 \
jmespath==1.0.1 \
MarkupSafe==3.0.2 \
packaging==24.2 \
pycparser==2.22 \
pywinrm==0.5.0 \
PyYAML==6.0.2 \
redbaron==0.9.2 \
requests==2.32.3 \
resolvelib==1.0.1 \
rply==0.7.8 \
&& \
echo -e "\nstrategy = mitogen_linear" >>/etc/ansible/ansible.cfg && \
echo "strategy_plugins = /opt/semaphore/apps/ansible/${ANSIBLE_VERSION}/venv/lib/python3.11/site-packages/ansible_mitogen/plugins/strategy" >>/etc/ansible/ansible.cfg && \
Expand Down
34 changes: 17 additions & 17 deletions deployment/docker/server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -89,23 +89,23 @@ RUN export MITOGEN_VERSION=$(curl -s https://api.github.com/repos/mitogen-hq/mit
pip3 install --upgrade pip>=25 \
ansible==${ANSIBLE_VERSION} \
mitogen==${MITOGEN_VERSION} \
appdirs>=1.4 \
baron>=0.10 \
boto3>=1.36 \
botocore>=1.36 \
cffi>=1.17 \
cryptography>=44 \
Jinja2>=3 \
jmespath>=1 \
MarkupSafe>=3 \
packaging>=24 \
pycparser>=2 \
pywinrm>=0.5 \
PyYAML>=6 \
redbaron>=0.9 \
requests>=2 \
resolvelib>=1 \
rply>=0.7 \
appdirs==1.4.4 \
baron==0.10.1 \
boto3==1.36.14 \
botocore==1.36.14 \
cffi==1.17.1 \
cryptography==44.0.0 \
Jinja2==3.1.5 \
jmespath==1.0.1 \
MarkupSafe==3.0.2 \
packaging==24.2 \
pycparser==2.22 \
pywinrm==0.5.0 \
PyYAML==6.0.2 \
redbaron==0.9.2 \
requests==2.32.3 \
resolvelib==1.0.1 \
rply==0.7.8 \
&& \
echo -e "\nstrategy = mitogen_linear" >>/etc/ansible/ansible.cfg && \
echo "strategy_plugins = /opt/semaphore/apps/ansible/${ANSIBLE_VERSION}/venv/lib/python3.11/site-packages/ansible_mitogen/plugins/strategy" >>/etc/ansible/ansible.cfg && \
Expand Down

0 comments on commit 6e5353b

Please sign in to comment.