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
Gettext 0.26.2 (latest) is also giving a warning about Timex usage
==> timex
Compiling 62 files (.ex)
warning: defining a Gettext backend by calling
use Gettext, otp_app: ...
is deprecated. To define a backend, call:
use Gettext.Backend, otp_app: :my_app
Then, instead of importing your backend, call this in your module:
use Gettext, backend: MyApp.Gettext
lib/l10n/gettext.ex:2: Timex.Gettext (module)
warning: min..max inside match is deprecated, you must always match on the step: min..max//var or min..max//_ if you want to ignore it
lib/format/datetime/formatter.ex:893: Timex.Format.DateTime.Formatter.width_spec/1
warning: Module.eval_quoted/4 is deprecated. Use Code.eval_quoted/3 instead
│
1205 │ Module.eval_quoted(__MODULE__, day_quoted, [], __ENV__)
│ ~
│
└─ lib/timex.ex:1205:12: Timex (module)
warning: Module.eval_quoted/4 is deprecated. Use Code.eval_quoted/3 instead
│
1303 │ Module.eval_quoted(__MODULE__, month_quoted, [], __ENV__)
│ ~
│
└─ lib/timex.ex:1303:12: Timex (module)
warning: Module.eval_quoted/4 is deprecated. Use Code.eval_quoted/3 instead
│
22 │ Module.eval_quoted(__MODULE__, quoted, [], __ENV__)
│ ~
│
└─ lib/timezone/utils.ex:22:12: Timex.Timezone.Utils (module)
warning: Module.eval_quoted/4 is deprecated. Use Code.eval_quoted/3 instead
│
42 │ Module.eval_quoted(__MODULE__, quoted, [], __ENV__)
│ ~
│
└─ lib/timezone/utils.ex:42:12: Timex.Timezone.Utils (module)
The text was updated successfully, but these errors were encountered:
And some different test failures #773 when I update to Elixir 1.18 (#772). Though I haven't checked 1.17 to see if the same test failures happen there.
Steps to reproduce
Using Timex from this GitHub repository in Elixir 1.18:
{:timex, "~> 3.7", github: "bitwalker/timex", ref: "cc649c7a5", override: true},
Description of issue
0.26.2
(latest) is also giving a warning about Timex usageThe text was updated successfully, but these errors were encountered: