Skip to content

Commit cf65291

Browse files
authored
Drop compatibility with pre-LTS versions (#174)
* Drop compatibility with pre-LTS versions * Update README * Use StableRNGs.jl to stabilize random seeds in tests across Julia versions
1 parent b833691 commit cf65291

14 files changed

+14
-27
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
version:
2323
- 'lts'
2424
- '1'
25-
# - 'pre' # TODO: tests on pre-release version
25+
- 'pre'
2626
steps:
2727
- uses: actions/checkout@v4
2828
- uses: julia-actions/setup-julia@v2

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ Reexport = "1"
2222
Statistics = "<0.0.1, 1"
2323
XAIBase = "4"
2424
Zygote = "0.6"
25-
julia = "1.6"
25+
julia = "1.10"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ and [iNNvestigate][innvestigate-repo] for Keras models.
1616
[^1]: More specifically, models currently have to be differentiable with [Zygote.jl](https://github.com/FluxML/Zygote.jl).
1717

1818
## Installation
19-
This package supports Julia ≥1.6. To install it, open the Julia REPL and run
19+
This package supports Julia ≥1.10. To install it, open the Julia REPL and run
2020
```julia-repl
2121
julia> ]add ExplainableAI
2222
```

src/ExplainableAI.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ using DifferentiationInterface: value_and_pullback
1414
using Zygote
1515
const DEFAULT_AD_BACKEND = AutoZygote()
1616

17-
include("compat.jl")
1817
include("bibliography.jl")
1918
include("input_augmentation.jl")
2019
include("gradient.jl")

src/compat.jl

Lines changed: 0 additions & 12 deletions
This file was deleted.

test/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ JuliaFormatter = "98e50ef6-434e-11e9-1051-2b60c6c9e899"
88
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
99
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1010
ReferenceTests = "324d217c-45ce-50fc-942e-d289b448e8cf"
11-
Suppressor = "fd094767-a336-5f1f-9728-57cf17d0bbfb"
11+
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
1212
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1313
XAIBase = "9b48221d-a747-4c1b-9860-46a1d8ba24a7"
38 Bytes
Binary file not shown.
25 Bytes
Binary file not shown.
25 Bytes
Binary file not shown.
25 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)