We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
python3-pip
1 parent 84c5eb9 commit 8f293aeCopy full SHA for 8f293ae
Dockerfile
@@ -10,7 +10,7 @@ ARG DEBIAN_FRONTEND=noninteractive
10
RUN apt-get install -y python3.9=3.9.5-3ubuntu0~20.04.1
11
12
# Install pip.
13
-RUN apt-get install -y python3-pip=20.0.2-5ubuntu1.9
+RUN apt-get install -y python3-pip
14
RUN python3.9 -m pip install --upgrade pip==22.1.2
15
16
# Install wget and unrar to download and extract ROMs.
dqn_zoo/replay_test.py
@@ -1006,6 +1006,7 @@ def test_set_cannot_add_negative_nan_or_inf_values(self):
1006
sum_tree.set([1], [np.inf])
1007
1008
def test_set_all_cannot_add_negative_nan_or_inf_values(self):
1009
+
1010
with self.assertRaises(ValueError):
1011
replay_lib.SumTree().set_all([1, -1])
1012
0 commit comments