File tree 4 files changed +16
-10
lines changed
4 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 33
33
ANACONDA_TOKEN : ${{ secrets.ANACONDA_TOKEN }}
34
34
working-directory : conda
35
35
run : |
36
- ./publish_package.sh -u ismrmrd -t "$ANACONDA_TOKEN" -p `find build_pkg -name siemens_to_ismrmrd*.tar.bz2`
36
+ for p in $(find build_pkg -name siemens_to_ismrmrd*.tar.bz2)
37
+ do
38
+ ./publish_package.sh -u ismrmrd -t "$ANACONDA_TOKEN" -p "$p"
39
+ done
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ message(STATUS "Looking for packages in : ${CMAKE_PREFIX_PATH}")
18
18
#VERSIONING
19
19
set (SIEMENS_TO_ISMRMRD_VERSION_MAJOR 1)
20
20
set (SIEMENS_TO_ISMRMRD_VERSION_MINOR 2)
21
- set (SIEMENS_TO_ISMRMRD_VERSION_PATCH 7 )
21
+ set (SIEMENS_TO_ISMRMRD_VERSION_PATCH 8 )
22
22
set (SIEMENS_TO_ISMRMRD_VERSION_STRING ${SIEMENS_TO_ISMRMRD_VERSION_MAJOR} .${SIEMENS_TO_ISMRMRD_VERSION_MINOR} .${SIEMENS_TO_ISMRMRD_VERSION_PATCH} )
23
23
24
24
# Generate the converter_version.h header file
Original file line number Diff line number Diff line change
1
+ boost :
2
+ - 1.76.0
3
+ - 1.80.0
Original file line number Diff line number Diff line change @@ -11,22 +11,22 @@ source:
11
11
12
12
requirements :
13
13
build :
14
- - boost=1.76.0
14
+ - boost {{ boost }}
15
15
- clang>=13.0.1 # [osx]
16
16
- clangxx>=13.0.1 # [osx]
17
17
- cmake>=3.20.0
18
18
- gcc_linux-64>=9.0.0 # [linux64]
19
19
- gxx_linux-64>=9.0.0 # [linux64]
20
- - ismrmrd=1.12.0
21
- - libxml2=2.9.12
22
- - libxslt=1.1.33
20
+ - ismrmrd=1.13.1
21
+ - libxml2=2.9
22
+ - libxslt=1.1
23
23
- ninja=1.10.*
24
24
25
25
run :
26
- - ismrmrd=1.12.0
27
- - boost=1.76.0
28
- - libxml2=2.9.12
29
- - libxslt=1.1.33
26
+ - ismrmrd=1.13.1
27
+ - boost {{ boost }}
28
+ - libxml2=2.9
29
+ - libxslt=1.1
30
30
31
31
about :
32
32
home : https://github.com/ismrmrd/siemens_to_ismrmrd
You can’t perform that action at this time.
0 commit comments