smpallen99 / ex_admin

ExAdmin is an auto administration package for Elixir and the Phoenix Framework
MIT License
1.2k stars 272 forks source link

Ecto 3.3 #404

Open yurgon opened 7 years ago

yurgon commented 7 years ago

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
aphillipo commented 7 years ago

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}
SiriusDely commented 6 years ago

@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

mbenatti commented 6 years ago

Ecto is not in v3.0 guys, Use Ecto 2.X

williamweckl commented 5 years ago

Ecto is not in v3.0 guys, Use Ecto 2.X

Now it is. :D