Skip to content
This repository has been archived by the owner on Jun 4, 2022. It is now read-only.

Rebuild for arpack37 #25

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 8 additions & 5 deletions .azure-pipelines/azure-pipelines-osx.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 16 additions & 12 deletions .azure-pipelines/azure-pipelines-win.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .ci_support/linux_python3.6.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
arpack:
- 3.6.3
- '3.7'
bzip2:
- '1'
c_compiler:
Expand Down
2 changes: 1 addition & 1 deletion .ci_support/linux_python3.7.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
arpack:
- 3.6.3
- '3.7'
bzip2:
- '1'
c_compiler:
Expand Down
7 changes: 7 additions & 0 deletions .ci_support/migrations/arpack37.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
__migrator:
build_number: 1
kind: version
migration_number: 1
arpack:
- '3.7'
migrator_ts: 1586036033.4359639
6 changes: 3 additions & 3 deletions .ci_support/osx_python3.6.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
MACOSX_DEPLOYMENT_TARGET:
- '10.9'
arpack:
- 3.6.3
- '3.7'
bzip2:
- '1'
c_compiler:
- clang
c_compiler_version:
- '9'
- '10'
channel_sources:
- conda-forge,defaults
channel_targets:
Expand All @@ -17,7 +17,7 @@ curl:
cxx_compiler:
- clangxx
cxx_compiler_version:
- '9'
- '10'
glpk:
- '4.65'
hdf5:
Expand Down
6 changes: 3 additions & 3 deletions .ci_support/osx_python3.7.____cpython.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
MACOSX_DEPLOYMENT_TARGET:
- '10.9'
arpack:
- 3.6.3
- '3.7'
bzip2:
- '1'
c_compiler:
- clang
c_compiler_version:
- '9'
- '10'
channel_sources:
- conda-forge,defaults
channel_targets:
Expand All @@ -17,7 +17,7 @@ curl:
cxx_compiler:
- clangxx
cxx_compiler_version:
- '9'
- '10'
glpk:
- '4.65'
hdf5:
Expand Down
2 changes: 1 addition & 1 deletion .gitattributes

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions .scripts/run_docker_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions .scripts/run_osx_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ source:
{% set lc, vs, ve, prefix, parbuild = "\\", "$", "", "$PREFIX", "-j $CPU_COUNT" %} # [unix]
{% set lc, vs, ve, prefix, parbuild = "^", "%", "%", "%LIBRARY_PREFIX%", "" %} # [win]
build:
number: 3
number: 4
features:
- blas_{{ blas_variant }} # [not win]
skip: true # [win32 or (win and vc<14)]
Expand All @@ -44,7 +44,7 @@ build:
pylib=$(ldd $PYTHON | grep $PREFIX | grep 'libpython.*\.so' | cut -d' ' -f3) # [linux]

cmake .. {{ lc }}
-G"{{vs}}CMAKE_GENERATOR{{ve}}" {{ lc }}
-G"{{ vs }}CMAKE_GENERATOR{{ ve }}" {{ lc }}
-DCMAKE_PREFIX_PATH="{{ prefix }}" {{ lc }}
-DCMAKE_INSTALL_PREFIX="{{ prefix }}" {{ lc }}
-DCMAKE_BUILD_TYPE=Release {{ lc }}
Expand All @@ -53,7 +53,7 @@ build:
-DENABLE_TESTING=OFF {{ lc }}
-DENABLE_COVERAGE=OFF {{ lc }}
-DUSE_SVMLIGHT=OFF {{ lc }}
-DPYTHON_EXECUTABLE={{vs}}PYTHON{{ve}} {{ lc }}
-DPYTHON_EXECUTABLE={{ vs }}PYTHON{{ ve }} {{ lc }}
-DPYTHON_INCLUDE_DIR=$pyinc \ # [unix]
-DPYTHON_LIBRARY=$pylib \ # [unix]
-DLIBSHOGUN=OFF {{ lc }}
Expand Down