File tree Expand file tree Collapse file tree 4 files changed +11
-7
lines changed
Expand file tree Collapse file tree 4 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1818 dependency-versions : ['minimum', 'latest']
1919 include :
2020 - dependency-versions : minimum
21- numpy-version : ' 1.17.0 '
21+ numpy-version : ' 1.19.5 ' # Updated minimum version
2222 pandas-version : ' 1.0.0'
2323 scikit-learn-version : ' 1.0.0'
2424 - dependency-versions : latest
@@ -43,12 +43,16 @@ jobs:
4343 pyproject.toml
4444 requirements*.txt
4545
46+ - name : Install build dependencies
47+ run : |
48+ python -m pip install --upgrade pip setuptools wheel
49+ python -m pip install build
50+
4651 - name : Install dependencies
4752 run : |
48- python -m pip install --upgrade pip
49- pip install '.[dev]'
53+ python -m pip install '.[dev]'
5054 if [ "${{ matrix.dependency-versions }}" = "minimum" ]; then
51- pip install "numpy==${{ matrix.numpy-version }}" "pandas==${{ matrix.pandas-version }}" "scikit-learn==${{ matrix.scikit-learn-version }}"
55+ python -m pip install "numpy==${{ matrix.numpy-version }}" "pandas==${{ matrix.pandas-version }}" "scikit-learn==${{ matrix.scikit-learn-version }}"
5256 fi
5357
5458 - name : Run style checks
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ classifiers = [
2828]
2929
3030dependencies = [
31- " numpy>=1.17.0 " ,
31+ " numpy>=1.19.5 " ,
3232 " pandas>=1.0.0" ,
3333 " tqdm>=4.45.0" ,
3434 " scikit-learn>=1.0.0" ,
Original file line number Diff line number Diff line change 11# Core requirements
2- numpy >= 1.17.0
2+ numpy >= 1.19.5
33pandas >= 1.0.0
44tqdm >= 4.45.0
55scikit-learn >= 1.0.0
Original file line number Diff line number Diff line change 1313
1414# Core requirements
1515core_requirements = [
16- "numpy>=1.17.0 " ,
16+ "numpy>=1.19.5 " ,
1717 "pandas>=1.0.0" ,
1818 "tqdm>=4.45.0" ,
1919 "scikit-learn>=1.0.0" ,
You can’t perform that action at this time.
0 commit comments