Skip to content

Commit

Permalink
fix: update numpy version to be compatible with python 3.10 (#152)
Browse files Browse the repository at this point in the history
* fix: update numpy version to be compatible with python 3.10

* fix: downgrade numpy to pass build

* fix: update python version to 3.10 for github actions
  • Loading branch information
rfazeli committed Jun 22, 2023
1 parent b077a59 commit bbd5686
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.7'
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.7'
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ tqdm==4.43.0
matplotlib==3.2.1
XlsxWriter==1.2.8
ibm-watson==5.1.0
numpy==1.20.3
numpy==1.25.0
requests==2.26
scikit-learn>=0.21.3
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
'matplotlib==3.2.1',
'XlsxWriter==1.2.8',
'ibm-watson==5.1.0',
'numpy==1.20.3',
'numpy==1.25.0',
'requests==2.26'
],

Expand Down

0 comments on commit bbd5686

Please sign in to comment.