Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change n8l::pyverok() default py3 min minor to 6 (py 3.6) #82

Merged
merged 1 commit into from
Mar 28, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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