Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix python-setuptools package name for bookwork #14845

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all 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
4 changes: 2 additions & 2 deletions tests/copp/copp_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,14 +214,14 @@ def _install_nano_bookworm(dut, creds, syncd_docker_name):
&& rm -rf /var/lib/apt/lists/* \
&& apt-get update \
&& apt-get install -y python3-pip build-essential libssl-dev libffi-dev \
python3-dev python-setuptools wget libnanomsg-dev python-is-python3 \
python3-dev python3-setuptools wget libnanomsg-dev python-is-python3 \
&& pip3 install cffi==1.16.0 && pip3 install nnpy \
&& mkdir -p /opt && cd /opt && wget \
https://raw.githubusercontent.com/p4lang/ptf/master/ptf_nn/ptf_nn_agent.py \
&& mkdir ptf && cd ptf && wget \
https://raw.githubusercontent.com/p4lang/ptf/master/src/ptf/afpacket.py && touch __init__.py \
&& apt-get -y purge build-essential libssl-dev libffi-dev python3-dev \
python-setuptools wget \
python3-setuptools wget \
" '''.format(http_proxy, https_proxy, syncd_docker_name)
dut.command(cmd)

Expand Down
Loading