Skip to content

Commit

Permalink
Drop support for Elixir 1.13 (#595)
Browse files Browse the repository at this point in the history
We also remove support for OTP 22
  • Loading branch information
philss authored Oct 22, 2024
1 parent ce33a55 commit 17fd1d0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 22 deletions.
25 changes: 5 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 17fd1d0

Please sign in to comment.