From 9a442197b56057a17008317560ff1977144c5091 Mon Sep 17 00:00:00 2001 From: Vittoria Bitton Date: Tue, 20 Feb 2024 20:02:24 -0300 Subject: [PATCH] Update Elixir version requirement to 1.13 (#541) * Update elixir version to 1.13 * Update elixir version in CI --- .github/workflows/ci.yml | 6 +++--- mix.exs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ce52e14..31029f03 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,17 +14,17 @@ jobs: strategy: fail-fast: false matrix: - elixir: ["1.16", "1.12"] + elixir: ["1.16", "1.13"] otp: ["26.2", "25.3", "22.3"] parser: [fast_html, html5ever, mochiweb] exclude: - elixir: "1.16" otp: "22.3" - - elixir: "1.12" + - elixir: "1.13" otp: "25.3" - - elixir: "1.12" + - elixir: "1.13" otp: "26.2" steps: diff --git a/mix.exs b/mix.exs index f2217b76..5ce2d724 100644 --- a/mix.exs +++ b/mix.exs @@ -11,7 +11,7 @@ defmodule Floki.Mixfile do name: "Floki", version: @version, description: @description, - elixir: "~> 1.12", + elixir: "~> 1.13", package: package(), erlc_paths: ["src", "gen"], compilers: [:leex] ++ Mix.compilers(),