Skip to content

Commit 198af63

Browse files
committed
Try installing fypp in another way
1 parent b435ce0 commit 198af63

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/ci_windows.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,12 @@ jobs:
5656
ninja
5757
mingw-w64-x86_64-minizip-ng
5858
59-
- name: Install fypp
59+
- name: Install fypp (MSYS)
60+
if: contains(matrix.msystem, 'MSYS')
61+
run: pacman -S --noconfirm python-pip && pip install fypp
62+
63+
- name: Install fypp (MinGW)
64+
if: contains(matrix.msystem, 'MINGW')
6065
run: pip install fypp
6166

6267
- run: >-

src/stdlib_array.fypp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ module stdlib_array
1717
!> Helper class to allocate t_array as an abstract type.
1818
type, public :: t_array_wrapper
1919
class(t_array), allocatable :: array
20-
2120
contains
22-
2321
#:for k1, t1 in KINDS_TYPES
2422
#:for rank in RANKS
2523
generic :: allocate_array => allocate_array_${t1[0]}$${k1}$_${rank}$
@@ -45,7 +43,7 @@ contains
4543
#:for k1, t1 in KINDS_TYPES
4644
#:for rank in RANKS
4745
!> Allocate an instance of the array within the wrapper.
48-
subroutine allocate_array_${t1[0]}$${k1}$_${rank}$(wrapper, array, stat, msg)
46+
subroutine allocate_array_${t1[0]}$${k1}$_${rank}$ (wrapper, array, stat, msg)
4947
class(t_array_wrapper), intent(out) :: wrapper
5048
${t1}$, intent(in) :: array${ranksuffix(rank)}$
5149
integer, intent(out) :: stat

0 commit comments

Comments
 (0)