You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, when trying to build a website with a Gemfile that requires a newer version of github-pages than 207, I get the following error:
>>> bundle install
Fetching gem metadata from https://rubygems.org/.........
Resolving dependencies...
Could not find compatible versions
Because devlopr >= 0.4.3 depends on jekyll-seo-tag ~> 2.6.1
and github-pages >= 210, < 224 depends on jekyll-seo-tag = 2.7.1,
devlopr >= 0.4.3 is incompatible with github-pages >= 210, < 224.
So, because Gemfile depends on devlopr ~> 0.4.5
and Gemfile depends on github-pages ~> 210,
version solving has failed.
Here's an example Gemfile:
source "https://rubygems.org"
# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
# gem "jekyll", "~> 4.0.0"
# This is the default theme for new Jekyll sites. You may change this to anything you like.
gem "devlopr", "~> 0.4.5"
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
gem "github-pages", "~> 210", group: :jekyll_plugins
# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-feed", "~> 0.11"
gem 'jekyll-algolia', '~> 1.0'
end
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library.
install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
gem "tzinfo", "~> 1.2"
gem "tzinfo-data"
end
# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform?
gem "webrick", "~> 1.7"
Could you advise on how to fix? Is this something that needs to be updated on the devlopr side?
The text was updated successfully, but these errors were encountered:
Hi, when trying to build a website with a
Gemfile
that requires a newer version ofgithub-pages
than207
, I get the following error:Here's an example
Gemfile
:Could you advise on how to fix? Is this something that needs to be updated on the
devlopr
side?The text was updated successfully, but these errors were encountered: