File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,13 @@ jobs:
15
15
strategy :
16
16
fail-fast : false
17
17
matrix :
18
- os : [ "ubuntu-latest", "windows-latest" ]
19
- # Note: The python versions were changed due to the latest versions of ubuntu and windows no longer having support for python 3.6 or 3.8.
20
- # Note: MacOS compatibility has been removed due to no gcc compatibility with the latest versions of MacOS.
18
+ os : [ "ubuntu-latest", "macos-latest", "windows-latest" ]
21
19
python-version : [ "3.10", "3.12"]
22
20
max-parallel : 6
23
21
24
22
steps :
25
- - uses : actions/checkout@v2
26
- - uses : actions/setup-python@v2
23
+ - uses : actions/checkout@v4
24
+ - uses : actions/setup-python@v5
27
25
with :
28
26
python-version : ${{ matrix.python-version }}
29
27
@@ -44,13 +42,13 @@ jobs:
44
42
brew update-reset
45
43
brew update
46
44
gcc-13 --version || brew install gcc@13
47
- pip install git+https://github.com/pySTEPS/pysteps
45
+ pip install git+https://github.com/pySTEPS/pysteps@postprocessor_plugin
48
46
python -c "import pysteps"
49
47
50
48
- name : Install pysteps on Windows and Linux
51
49
if : matrix.os != 'macos-latest'
52
50
run : |
53
- pip install git+https://github.com/pySTEPS/pysteps
51
+ pip install git+https://github.com/pySTEPS/pysteps@postprocessor_plugin
54
52
python -c "import pysteps"
55
53
56
54
- name : Run tests
You can’t perform that action at this time.
0 commit comments