We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11855b2 commit 624d9f7Copy full SHA for 624d9f7
.github/workflows/python_env.yml
@@ -2,7 +2,7 @@ name: Python Environment
2
3
on:
4
# To run manually
5
- workflow_dispatch
+ push
6
7
jobs:
8
setup:
@@ -12,9 +12,9 @@ jobs:
12
13
- name: Install Python dependencies
14
run: |
15
- python -m pip install matplotlib scipy
+ python -m pip install matplotlib numpy
16
17
- name: Hello World
18
19
- python -c "import scipy as sp; print('Scipy version: '+sp.__version__)"
+ python -c "import numpy as sp; print('Numpy version: '+np.__version__)"
20
python -c "import matplotlib as mpl; print('Matplotlib version: '+mpl.__version__)"
0 commit comments