ex_admin
ex_admin copied to clipboard
Ecto 3.3
Hello How to fix deps ?
Failed to use "phoenix_ecto" (versions 3.2.0 to 3.3.0) because
ex_admin (version 0.8.2) requires ~> 3.0.0
mix.exs specifies ~> 3.2
https://hexdocs.pm/mix/Mix.Tasks.Deps.html#module-dependency-definition-options
Specify a version of ecto as a dep in mix.exs and set override: true
, i.e.:
{:ecto, ">= 3.2.0", override: true}
@yurgon have you found solution for this?
both
{:ecto, ">= 3.2.0", override: true}
and
{:phoenix_ecto, ">= 3.2.0", override: true}
cannot make it to work..
any other idea @aphillipo ?
EDIT 1
hmm i can make it work using (latest?):
{:ex_admin, github: "smpallen99/ex_admin"},
and after that, faced this issue https://github.com/smpallen99/ex_admin/issues/400#issuecomment-332940314 with that fix
EDIT 2
found more reliable solution here https://github.com/smpallen99/ex_admin/issues/399
Ecto is not in v3.0 guys, Use Ecto 2.X
Ecto is not in v3.0 guys, Use Ecto 2.X
Now it is. :D