Skip to content

Commit

Permalink
change requirement to nim >= 2.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
narimiran committed Nov 26, 2024
1 parent b46315b commit a29f1ac
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions eth.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "Ethereum Common library"
license = "MIT"
skipDirs = @["tests"]

requires "nim >= 1.6.0",
requires "nim >= 2.0.10",
"nimcrypto",
"stint",
"secp256k1",
Expand Down Expand Up @@ -43,8 +43,7 @@ proc build(args, path, outdir: string) =

proc run(path, outdir: string) =
build "--mm:refc -r", path, outdir
if (NimMajor, NimMinor) > (1, 6):
build "--mm:orc -r", path, outdir
build "--mm:orc -r", path, outdir

task test_keyfile, "Run keyfile tests":
run "tests/keyfile/all_tests", "keyfile"
Expand Down

0 comments on commit a29f1ac

Please sign in to comment.