Skip to content

Commit 85899c4

Browse files
committed
Merge branch 'aiohttp3' into cgroup2
2 parents a36454d + 9fef504 commit 85899c4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM debian:stretch
1+
FROM debian:bookworm
22
COPY . /tmp/jd4
33
RUN apt-get update && \
44
apt-get install -y \
@@ -8,11 +8,11 @@ RUN apt-get update && \
88
python3-dev \
99
g++ \
1010
fp-compiler \
11-
openjdk-8-jdk-headless \
12-
python \
13-
php7.0-cli \
11+
openjdk-17-jdk-headless \
12+
python-is-python3 \
13+
php8.2-cli \
1414
rustc \
15-
haskell-platform \
15+
ghc \
1616
libjavascriptcoregtk-4.0-bin \
1717
golang \
1818
ruby \

jd4/integration_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def test_php(self):
8080
""")
8181

8282
def test_py(self):
83-
self.do_lang('py', b'print sum(map(int, raw_input().split()))')
83+
self.do_lang('py', b'print(sum(map(int, input().split())))')
8484

8585
def test_py3(self):
8686
self.do_lang('py3', b'print(sum(map(int, input().split())))')

0 commit comments

Comments
 (0)