Skip to content

Commit

Permalink
upgrade pip to get latest stable version of cocotb
Browse files Browse the repository at this point in the history
Changes dockerfile
  • Loading branch information
nathanielnrn committed Jun 14, 2024
1 parent bd46b59 commit 9d73f7f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ RUN echo "deb https://repo.scala-sbt.org/scalasbt/debian all main" | tee /etc/ap
RUN python3 -m venv /opt/venv
ENV PATH="/opt/venv/bin:$PATH"

# Upgrade pip
RUN python3 -m pip install --upgrade pip
# Install python dependencies
RUN python3 -m pip install numpy flit prettytable wheel hypothesis pytest simplejson cocotb==1.6.2
RUN python3 -m pip install numpy flit prettytable wheel hypothesis pytest simplejson cocotb
# Current cocotb-bus has a bug that is fixed in more up to date repo
RUN python3 -m pip install git+https://github.com/cocotb/cocotb-bus.git cocotbext-axi

Expand Down

0 comments on commit 9d73f7f

Please sign in to comment.