Skip to content

Commit

Permalink
Increase minimum supported elixir version to v1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
akash-akya committed Jul 29, 2024
1 parent 851c69d commit 9467c80
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@ jobs:
strategy:
matrix:
include:
- elixir: 1.9.x
otp: 22.x
- elixir: 1.10.x
otp: 23.x
- elixir: 1.11.x
otp: 23.x
- elixir: 1.12.x
otp: 23.x
- elixir: 1.13.x
Expand Down
2 changes: 1 addition & 1 deletion lib/vix/vips/image.ex
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ defmodule Vix.Vips.Image do
end

# We can do this as a guard in later Elixir versions but
# Vix is intendede to run on a wide range of Elixir versions.
# Vix is intended to run on a wide range of Elixir versions.

defp single_step_range?(%Range{} = range) do
Map.get(range, :step) == 1 || !Map.has_key?(range, :step)
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defmodule Vix.MixProject do
[
app: :vix,
version: @version,
elixir: "~> 1.7",
elixir: "~> 1.12",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:elixir_make] ++ Mix.compilers(),
Expand Down

0 comments on commit 9467c80

Please sign in to comment.