Skip to content

Commit

Permalink
Merge pull request #9330 from joshcooper/ffi_bump
Browse files Browse the repository at this point in the history
Accept ffi >= 1.16.3, < 1.17.0
  • Loading branch information
mhashizume committed Apr 25, 2024
2 parents fa213f5 + aa51340 commit 1d188e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Gemfile
Expand Up @@ -39,7 +39,8 @@ group(:features) do
end

group(:test) do
gem "ffi", '1.15.5', require: false
# 1.16.0 - 1.16.2 are broken on Windows
gem 'ffi', '>= 1.15.5', '< 1.17.0', '!= 1.16.0', '!= 1.16.1', '!= 1.16.2', require: false
gem "json-schema", "~> 2.0", require: false
gem "rake", *location_for(ENV['RAKE_LOCATION'] || '~> 13.0')
gem "rspec", "~> 3.1", require: false
Expand Down
3 changes: 2 additions & 1 deletion puppet.gemspec
Expand Up @@ -38,7 +38,8 @@ Gem::Specification.new do |s|
end

if platform == 'x64-mingw32' || platform == 'x86-mingw32'
s.add_runtime_dependency('ffi', '1.15.5')
# ffi 1.16.0 - 1.16.2 are broken on Windows
s.add_runtime_dependency('ffi', '>= 1.15.5', '< 1.17.0', '!= 1.16.0', '!= 1.16.1', '!= 1.16.2')
s.add_runtime_dependency('minitar', '~> 0.9')
end
end

0 comments on commit 1d188e1

Please sign in to comment.