Skip to content

Commit

Permalink
fix(deps): std/os instead of commandline for 1.6.x and gmp@#head
Browse files Browse the repository at this point in the history
  • Loading branch information
mratsim committed Jul 12, 2024
1 parent 623e05f commit 170a600
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ jobs:
run: |
pacman -S --needed --noconfirm mingw-w64-x86_64-gmp mingw-w64-x86_64-llvm
nimble refresh --verbose -y
nimble install --verbose -y gmp jsony asynctools [email protected] cliche
nimble install --verbose -y gmp@#head jsony asynctools [email protected] cliche
cd constantine
go mod download -modfile=go_test.mod
Expand All @@ -272,7 +272,7 @@ jobs:
shell: bash
run: |
nimble refresh --verbose -y
nimble install --verbose -y gmp jsony asynctools [email protected] cliche
nimble install --verbose -y gmp@#head jsony asynctools [email protected] cliche
cd constantine
go mod download -modfile=go_test.mod
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/zkalc.nim
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import
# Helpers
helpers/prng_unsafe,
# Standard library
std/[stats, monotimes, times, strformat, strutils, cmdline, macros],
std/[stats, monotimes, times, strformat, strutils, os, macros],
# Third-party
jsony, cliche

Expand Down
4 changes: 2 additions & 2 deletions constantine.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ when (NimMajor, NimMinor) >= (2, 0): # Task-level dependencies

taskRequires "test", "jsony"
taskRequires "test", "yaml"
taskRequires "test", "gmp"
taskRequires "test", "gmp@#head"

taskRequires "test_parallel", "jsony"
taskRequires "test_parallel", "yaml"
taskRequires "test_parallel", "gmp"
taskRequires "test_parallel", "gmp@#head"

taskRequires "test_no_gmp", "jsony"
taskRequires "test_no_gmp", "yaml"
Expand Down

0 comments on commit 170a600

Please sign in to comment.