Skip to content

Commit

Permalink
Unpin initial version of python3-pip as versions quickly become una…
Browse files Browse the repository at this point in the history
…vailable.

We subsequently upgrade to a specific later version anyway.

PiperOrigin-RevId: 588344280
  • Loading branch information
jqdm committed Dec 7, 2023
1 parent 84c5eb9 commit 8f293ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get install -y python3.9=3.9.5-3ubuntu0~20.04.1

# Install pip.
RUN apt-get install -y python3-pip=20.0.2-5ubuntu1.9
RUN apt-get install -y python3-pip
RUN python3.9 -m pip install --upgrade pip==22.1.2

# Install wget and unrar to download and extract ROMs.
Expand Down
1 change: 1 addition & 0 deletions dqn_zoo/replay_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1006,6 +1006,7 @@ def test_set_cannot_add_negative_nan_or_inf_values(self):
sum_tree.set([1], [np.inf])

def test_set_all_cannot_add_negative_nan_or_inf_values(self):

with self.assertRaises(ValueError):
replay_lib.SumTree().set_all([1, -1])

Expand Down

0 comments on commit 8f293ae

Please sign in to comment.