Skip to content

Commit 6abcb36

Browse files
committed
fix build as stream_data was failing on the older versions
1 parent 11609da commit 6abcb36

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,8 @@ jobs:
2121
#
2222
# https://hexdocs.pm/elixir/compatibility-and-deprecations.html#between-elixir-and-erlang-otp
2323
include:
24-
- elixir_version: '1.7.4'
25-
otp_version: '20.3'
26-
- elixir_version: '1.8.2'
27-
otp_version: '20.3'
28-
- elixir_version: '1.9.4'
29-
otp_version: '21.3'
30-
- elixir_version: '1.10.4'
31-
otp_version: '21.3'
32-
- elixir_version: '1.11.4'
33-
otp_version: '22.3'
24+
# Code should work down to elixir 1.7, but stream_data requires 1.12+ and I don't think it's worth my time to
25+
# be conditionally including the library: https://github.com/whatyouhide/stream_data/blob/main/CHANGELOG.md#v110
3426
- elixir_version: '1.12.3'
3527
otp_version: '23.3'
3628
- elixir_version: '1.13.4'

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ end
1616
```
1717

1818
Supported elixir versions are 1.6+ (together with their respective erlang OTP versions aka 19+).
19+
Tests are only running against elixir 1.12+ though, as some dependencies aren't compatible with versions that old.
20+
But also, most people probably don't care about them.
1921

2022
## Usage
2123

0 commit comments

Comments
 (0)