From 17fd1d0b309eb07ef9c688d2d03601c8683e0073 Mon Sep 17 00:00:00 2001 From: Philip Sampaio Date: Tue, 22 Oct 2024 11:40:55 -0300 Subject: [PATCH] Drop support for Elixir 1.13 (#595) We also remove support for OTP 22 --- .github/workflows/ci.yml | 25 +++++-------------------- mix.exs | 4 ++-- 2 files changed, 7 insertions(+), 22 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94c8adad..ea798111 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,30 +14,15 @@ jobs: strategy: fail-fast: false matrix: - elixir: ["1.17", "1.16", "1.13"] - otp: ["27.0", "26.2", "25.3", "22.3"] + elixir: ["1.17", "1.14"] + otp: ["27.1", "23.3"] parser: [fast_html, html5ever, mochiweb] exclude: - elixir: "1.17" - otp: "22.3" + otp: "23.3" - - elixir: "1.17" - otp: "25.3" - - - elixir: "1.16" - otp: "22.3" - - - elixir: "1.16" - otp: "27.0" - - - elixir: "1.13" - otp: "25.3" - - - elixir: "1.13" - otp: "26.2" - - - elixir: "1.13" - otp: "27.0" + - elixir: "1.14" + otp: "27.1" steps: - uses: actions/checkout@v4 diff --git a/mix.exs b/mix.exs index 319e608b..f7f92805 100644 --- a/mix.exs +++ b/mix.exs @@ -11,10 +11,10 @@ defmodule Floki.Mixfile do name: "Floki", version: @version, description: @description, - elixir: "~> 1.13", + elixir: "~> 1.14", package: package(), erlc_paths: ["src", "gen"], - compilers: [:leex] ++ Mix.compilers(), + compilers: [:leex | Mix.compilers()], deps: deps(), aliases: aliases(), docs: docs(),