Skip to content

Commit

Permalink
Merge branch 'aiohttp3' into cgroup2
Browse files Browse the repository at this point in the history
  • Loading branch information
twd2 committed Mar 17, 2024
2 parents a36454d + 9fef504 commit 85899c4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:stretch
FROM debian:bookworm
COPY . /tmp/jd4
RUN apt-get update && \
apt-get install -y \
Expand All @@ -8,11 +8,11 @@ RUN apt-get update && \
python3-dev \
g++ \
fp-compiler \
openjdk-8-jdk-headless \
python \
php7.0-cli \
openjdk-17-jdk-headless \
python-is-python3 \
php8.2-cli \
rustc \
haskell-platform \
ghc \
libjavascriptcoregtk-4.0-bin \
golang \
ruby \
Expand Down
2 changes: 1 addition & 1 deletion jd4/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def test_php(self):
""")

def test_py(self):
self.do_lang('py', b'print sum(map(int, raw_input().split()))')
self.do_lang('py', b'print(sum(map(int, input().split())))')

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

0 comments on commit 85899c4

Please sign in to comment.