Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
R: [ '4.4.3', '4.5.3' ]
R: [ '4.4.3', '4.5.3', '4.6.0' ]
os: [ 'macos-15-intel', 'ubuntu-latest', 'windows-latest']
runs-on: ${{ matrix.os }}
name: ${{ matrix.R }} ${{ matrix.os }} build
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: SimpleITK
SITK_TARGET: v2.5.4
SITK_TARGET: release
Note1: The Version and Date fields are derived from the SITK_TARGET
DO NOT EDIT THEM MANUALLY.
After updating the SITK_TARGET run the sitk_r_version_date.sh script
Expand Down
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export RCALL
CC="$(${RCALL} CMD config CC)"
CXX="$(${RCALL} CMD config CXX)"
CFLAGS="$(${RCALL} CMD config CFLAGS)"
CXXFLAGS="$(${RCALL} CMD config CXX11FLAGS)"
CXXFLAGS="$(${RCALL} CMD config CXXFLAGS)"
CPPFLAGS="$(${RCALL} CMD config CPPFLAGS)"
export CXX
export CC
Expand Down
2 changes: 1 addition & 1 deletion configure.win
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ mkdir -p "$BUILDDIR"
CC="$("${R_HOME}/bin/R.exe" CMD config CC)"
CXX="$("${R_HOME}/bin/R.exe" CMD config CXX)"
CFLAGS="$("${R_HOME}/bin/R.exe" CMD config CFLAGS)"
CXXFLAGS="$("${R_HOME}/bin/R.exe" CMD config CXX11FLAGS)"
CXXFLAGS="$("${R_HOME}/bin/R.exe" CMD config CXXFLAGS)"
CPPFLAGS="$("${R_HOME}/bin/R.exe" CMD config CPPFLAGS)"
export CC CXX CFLAGS CXXFLAGS CPPFLAGS

Expand Down
Loading