Skip to content

Commit

Permalink
Merge branch 'DMOJ:master' into fix_mypy_error
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonLovesDoggo authored Sep 21, 2024
2 parents 91f34a2 + 367abcc commit 419ca9a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .docker/tier1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG TAG=master
RUN mkdir /judge /problems && cd /judge && \
curl -L https://github.com/DMOJ/judge-server/archive/"${TAG}".tar.gz | tar -xz --strip-components=1 && \
python3 -m venv --prompt=DMOJ /env && \
/env/bin/pip3 install cython && \
/env/bin/pip3 install cython setuptools && \
/env/bin/pip3 install -e . && \
/env/bin/python3 setup.py develop && \
HOME=~judge . ~judge/.profile && \
Expand Down
2 changes: 1 addition & 1 deletion .docker/tier2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG TAG=master
RUN mkdir /judge /problems && cd /judge && \
curl -L https://github.com/DMOJ/judge-server/archive/"${TAG}".tar.gz | tar -xz --strip-components=1 && \
python3 -m venv --prompt=DMOJ /env && \
/env/bin/pip3 install cython && \
/env/bin/pip3 install cython setuptools && \
/env/bin/pip3 install -e . && \
/env/bin/python3 setup.py develop && \
HOME=~judge . ~judge/.profile && \
Expand Down
2 changes: 1 addition & 1 deletion .docker/tier3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG TAG=master
RUN mkdir /judge /problems && cd /judge && \
curl -L https://github.com/DMOJ/judge-server/archive/"${TAG}".tar.gz | tar -xz --strip-components=1 && \
python3 -m venv --prompt=DMOJ /env && \
/env/bin/pip3 install cython && \
/env/bin/pip3 install cython setuptools && \
/env/bin/pip3 install -e . && \
/env/bin/python3 setup.py develop && \
HOME=~judge . ~judge/.profile && \
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
import os
import sys
import traceback
from distutils.ccompiler import CCompiler
from distutils.errors import DistutilsPlatformError
from multiprocessing.pool import ThreadPool

from setuptools import Extension, find_packages, setup
from setuptools._distutils.ccompiler import CCompiler
from setuptools._distutils.errors import DistutilsPlatformError
from setuptools.command.build_ext import build_ext

if os.name == 'nt':
Expand Down

0 comments on commit 419ca9a

Please sign in to comment.