Home > Software engineering >  Does sbt/Scala have a "compatible release" similar to Bundler/pip >= or ~=?
Does sbt/Scala have a "compatible release" similar to Bundler/pip >= or ~=?

Time:11-19

I'm used to using ~= or >= to allow the package manager to upgrade to the latest compatible release.

Does sbt or Scala has anything similar to this? I couldn't find it on their docs here: https://www.scala-sbt.org/1.x/docs/Library-Management.html

Bundler equivalent: https://bundler.io/gemfile.html
pip equivalent: https://pip.pypa.io/en/stable/reference/requirements-file-format/#example

Thank you for your time

  • Related