Skip to content

Commit

Permalink
fix: add pip pre-installation step to resolve compatibility issues
Browse files Browse the repository at this point in the history
- Added step to upgrade numpy to the latest version before installing dependencies.
- Ensured matplotlib installation works without version conflicts with numpy.
  • Loading branch information
mjlee111 committed Nov 11, 2024
1 parent 6be18cf commit 0be0ddd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/workflows-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ jobs:
steps:
- name: Checking out
uses: actions/[email protected]
- name: Pre-installing dependencies
run: |
pip install --upgrade numpy
pip install numpy matplotlib
- name: Testing the default configuration
uses: ./
- name: Testing with different distribution
Expand Down

0 comments on commit 0be0ddd

Please sign in to comment.