Skip to content

Commit

Permalink
Merge pull request #82 from lsst/tickets/DM-13918-py36
Browse files Browse the repository at this point in the history
change n8l::pyverok() default py3 min minor to 6 (py 3.6)
  • Loading branch information
jhoblitt committed Mar 28, 2018
2 parents ee511c3 + a9449e9 commit 2b1f119
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/newinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ n8l::git_check() {
n8l::pyverok() {
local py_interp=${1:-python}
local minver2=${2:-7}
local minver3=${3:-5}
local minver3=${3:-6}

$py_interp -c "import sys
minver2=${minver2}
Expand Down
2 changes: 1 addition & 1 deletion spec/unit/n8l/pyverok_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

expect(py).to be_called_with_arguments.times(1)
expect(py).to be_called_with_arguments('-c', /minver2=7/)
expect(py).to be_called_with_arguments('-c', /minver3=5/)
expect(py).to be_called_with_arguments('-c', /minver3=6/)
end

it '3 params' do
Expand Down

0 comments on commit 2b1f119

Please sign in to comment.