Skip to content

Commit 91b0320

Browse files
committed
fixes 14
1 parent c80d458 commit 91b0320

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

Dockerfile.gpu-test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ COPY ./test/test_requirements.txt test/
2626
RUN ./opt/readies/bin/getpy3
2727
RUN ./opt/system-setup.py
2828
RUN set -e ;\
29-
python3 -m virtualenv venv ;\
29+
python3 -m virtualenv venv --system-site-packages;\
3030
. venv/bin/activate ;\
3131
./opt/system-setup.py
3232

opt/system-setup.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,6 @@ def macosx(self):
5656
if out.splitlines() == []:
5757
fatal("Xcode tools are not installed. Please run xcode-select --install.")
5858

59-
# workaround for ssl issue, needed in CircleCI
60-
#if os.environ.get('MACOS_PYTHON_SSL_FIX') == '1':
61-
# self.run("brew unlink python@2")
62-
# self.run("brew reinstall python3")
63-
6459
self.install_gnu_utils()
6560
self.install("git-lfs")
6661
self.install("redis")

0 commit comments

Comments
 (0)