Skip to content

Commit 8f293ae

Browse files
committed
Unpin initial version of python3-pip as versions quickly become unavailable.
We subsequently upgrade to a specific later version anyway. PiperOrigin-RevId: 588344280
1 parent 84c5eb9 commit 8f293ae

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ARG DEBIAN_FRONTEND=noninteractive
1010
RUN apt-get install -y python3.9=3.9.5-3ubuntu0~20.04.1
1111

1212
# Install pip.
13-
RUN apt-get install -y python3-pip=20.0.2-5ubuntu1.9
13+
RUN apt-get install -y python3-pip
1414
RUN python3.9 -m pip install --upgrade pip==22.1.2
1515

1616
# Install wget and unrar to download and extract ROMs.

dqn_zoo/replay_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,6 +1006,7 @@ def test_set_cannot_add_negative_nan_or_inf_values(self):
10061006
sum_tree.set([1], [np.inf])
10071007

10081008
def test_set_all_cannot_add_negative_nan_or_inf_values(self):
1009+
10091010
with self.assertRaises(ValueError):
10101011
replay_lib.SumTree().set_all([1, -1])
10111012

0 commit comments

Comments
 (0)