Skip to content
This repository was archived by the owner on Sep 11, 2023. It is now read-only.

Commit aab5cd2

Browse files
committed
fix build on py35, ld broken
1 parent a80be72 commit aab5cd2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

devtools/conda-recipe/meta.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ source:
1010
#git_url: ../../
1111

1212
build:
13-
preserve_egg_dir: True
1413
script_env:
1514
- CIRCLE_TEST_REPORTS
1615
- OMP_NUM_THREADS
1716
- PYEMMA_NJOBS
1817
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv"
18+
# workaround for bpo-24935, the compiler jinja2 template sets CC, but LDSHARED is not being set accordingly by distutils.sysconfig.
19+
script: LDSHARED="$CC -shared" python setup.py install --single-version-externally-managed --record record.txt # [linux and py35]
1920

2021
requirements:
2122
build:

0 commit comments

Comments
 (0)