Skip to content

Commit

Permalink
Merge pull request #98 from njoy/feature/fix
Browse files Browse the repository at this point in the history
Fixed issue #97
  • Loading branch information
whaeck authored Sep 3, 2018
2 parents 580dc75 + 990c468 commit d72bbb6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
12 changes: 8 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
sudo: required
dist: trusty
git:
submodules: false
addons:
Expand All @@ -21,10 +20,15 @@ os:
- osx

before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3 gcc; fi
- if [[ "$TRAVIS_OS_NAME" = "osx" ]]; then
brew update;
brew upgrade python3;
brew install gcc || true;
fi


script: "travis_wait 40 ./.travis/build.sh"
osx_image: xcode8
script: "./.travis/build.sh"
after_success: "./.travis/signature.sh"

env:
Expand Down
2 changes: 1 addition & 1 deletion src/gaminr.f90
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ subroutine gaminr
real(kr)::time,zref,znow,za,awr,e,en,elo,ehi,enext
real(kr)::thresh
character(4)::mtname(15)
integer::ng2s(400),ig2s(400)
integer::ng2s(ngmax+1),ig2s(ngmax+1)
real(kr)::z(10,10)
character(66)::text
character(4)::tt(17)
Expand Down
4 changes: 2 additions & 2 deletions src/vers.f90
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module version
! These values are updated during the NJOY revision-control process.
implicit none
private
character(8),public::vers='2016.39'
character(8),public::vday='03Jul18'
character(8),public::vers='2016.40'
character(8),public::vday='20Aug18'
end module version

0 comments on commit d72bbb6

Please sign in to comment.