Skip to content

Commit 68fe72a

Browse files
Merge pull request #486 from shankarpandala/feature/update-library
fix: Update minimum numpy version to 1.19.5 across configuration files
2 parents f2238d4 + b723c43 commit 68fe72a

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ classifiers = [
2828
]
2929

3030
dependencies = [
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",

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Core requirements
2-
numpy>=1.17.0
2+
numpy>=1.19.5
33
pandas>=1.0.0
44
tqdm>=4.45.0
55
scikit-learn>=1.0.0

setup.py

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

1414
# Core requirements
1515
core_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",

0 commit comments

Comments
 (0)