Skip to content

Commit

Permalink
Update minimum Julia version to 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Zentrik committed Jun 20, 2023
1 parent 3c4099b commit 6cf6f93
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.0'
- '1.5'
- 'nightly'
os:
- ubuntu-latest
Expand Down
5 changes: 3 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ UnPack = "3a884ed6-31ef-47d7-9d2a-63182c4928ed"
[compat]
OrderedCollections = "1"
UnPack = "0.1, 1.0"
julia = "1"
julia = "1.5"

[extras]
Markdown = "d6f4376e-aef5-505a-96c1-9c027394607a"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
SmartAsserts = "56560af0-ab70-43fe-a531-155d81972b00"

[targets]
test = ["REPL", "Test", "Markdown", "Pkg"]
test = ["REPL", "Test", "Markdown", "Pkg", "SmartAsserts"]
8 changes: 1 addition & 7 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
using Parameters, Test, Markdown, REPL

if VERSION >= v"1.5"
using Pkg
Pkg.add("SmartAsserts")
using SmartAsserts
end
using Parameters, Test, Markdown, REPL, SmartAsserts

# reconstruct
a8679 = (a=1, b=2)
Expand Down

0 comments on commit 6cf6f93

Please sign in to comment.