Skip to content

Commit e386772

Browse files
committed
fixed some details for fetching min-deps
1 parent c44dc6f commit e386772

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
fi
120120
# Test minimal versioning?
121121
if [[ "${{ matrix.minimal-dep }}" == "true" ]]; then
122-
echo "sisl_install_packages='numpy==1.21.*' 'scipy==1.6.*' 'xarray==0.21.*'" >> $GITHUB_OUTPUT
122+
echo "sisl_install_packages='numpy==1.22.*' 'scipy==1.8.*' 'xarray==0.21.*'" >> $GITHUB_OUTPUT
123123
else
124124
echo "sisl_install_packages=" >> $GITHUB_OUTPUT
125125
fi

.github/workflows/wheels.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ jobs:
195195
--index-url https://test.pypi.org/simple/ \
196196
--extra-index-url https://pypi.org/simple/ \
197197
"sisl[test,viz]==${{ env.SISL_VERSION }}" \
198-
"numpy==1.21.*" "scipy==1.6.*" "xarray==0.21.*"
198+
"numpy==1.22.*" "scipy==1.8.*" "xarray==0.21.*"
199199
200200
- name: Install sisl + dependencies (arm)
201201
if: matrix.os == 'macos-14'

CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ cmake_print_variables(CMAKE_INTERPROCEDURAL_OPTIMIZATION)
2323
cmake_print_variables(CMAKE_POSITION_INDEPENDENT_CODE)
2424
cmake_print_variables(CMAKE_INSTALL_PREFIX)
2525
cmake_print_variables(CMAKE_PREFIX_PATH)
26+
cmake_print_variables(CMAKE_SYSTEM_NAME)
27+
cmake_print_variables(CMAKE_CROSSCOMPILING)
2628
if(SKBUILD)
2729
message(STATUS "scikit-build-core: ${SKBUILD_CORE_VERSION}")
2830
endif()

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ keywords = [
5252
# lower bound of dependencies.
5353
dependencies = [
5454
# We need npt.NDArray
55-
"numpy>=1.21",
56-
"scipy>=1.6",
55+
"numpy>=1.22",
56+
"scipy>=1.8",
5757
# I can't get it to work on py311 with older versions
5858
"pyparsing>=2.2.1",
5959
# xarray fixes get_loc in 0.21

0 commit comments

Comments
 (0)