Bundler could not find compatible versions for gem "tzinfo":

Anyone understand why I might be getting this error…

$ middleman init testsite --template=html5
create testsite/Gemfile
run bundle install from “.”
Fetching gem metadata from http://rubygems.org/
Fetching gem metadata from http://rubygems.org/
Resolving dependencies…
Bundler could not find compatible versions for gem “tzinfo”:
In Gemfile:
tzinfo-data (>= 0) x86-mingw32 depends on
tzinfo (>= 1.0.0) x86-mingw32

middleman (~> 3.3.2) x86-mingw32 depends on
  tzinfo (0.3.37)
  create  testsite/.gitignore
  create  testsite/config.rb
  create  testsite/source
   exist  testsite/source

Depending on your setup, here are some things you can try (start at the top of the list and work your way down till you (hopefully) find something that works

bundle update

bundle install

gem update tzinfo tzinfo-data
bundle update

gem uninstall tzinfo tzinfo-data
gem install tzinfo tzinfo-data
bundle install