Skip to content

Commit e491bb4

Browse files
committed
Add fortran compiler in conda build
1 parent 002576e commit e491bb4

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ jobs:
172172
- name: Publish to conda
173173
run: |
174174
export CMAKE_BUILD_PARALLEL_LEVEL=4
175-
export CMAKE_CONFIGURE_ARGS="-DENABLE_SMD=ON"
176175
export ANACONDA_API_TOKEN=${{ secrets.ANACONDA_TOKEN }}
177176
conda install -y anaconda-client conda-build
178177
conda config --set anaconda_upload yes

conda/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ set -x -e
1313

1414
# C extensions must be installed with sequential BLAS library
1515
# https://pyscf.org/install.html#using-optimized-blas
16-
export CMAKE_CONFIGURE_ARGS="-DWITH_F12=OFF -DBLA_VENDOR=Intel10_64lp_seq"
16+
export CMAKE_CONFIGURE_ARGS="-DWITH_F12=OFF -DENABLE_SMD=ON -DBLA_VENDOR=Intel10_64lp_seq"
1717

1818
# env PYTHON not defined in certain conda-build version
1919
# $PYTHON -m pip install . -vv

conda/meta.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ requirements:
1919
- mkl
2020
- {{ compiler('c') }}
2121
- {{ compiler('cxx') }}
22+
- {{ compiler('fortran') }}
2223
host:
2324
- python
2425
run:

0 commit comments

Comments
 (0)