File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ srcDir = "src"
1010installExt = @ [" nim" ]
1111
1212# Dependencies
13- requires " nim >= 2.0.12 "
13+ requires " nim >= 1.6.20 "
1414
1515when defined (nimdistros):
1616 import distros
Original file line number Diff line number Diff line change 5959 # If not provided by default it applies to the current directory package.
6060 # For now, it is used only by the run action and it is ignored by others.
6161 pkgCachePath* : string # Cache used to store package downloads
62- useSatSolver* : bool = true
62+ useSatSolver* : bool
6363 extraRequires* : seq [PkgTuple ] # extra requires parsed from the command line
6464 nimBinariesDir* : string # Directory where nim binaries are stored. Separated from nimbleDir as it can be changed by the user/tests
6565 disableNimBinaries* : bool # Whether to disable the use of nim binaries
@@ -754,7 +754,8 @@ proc initOptions*(): Options =
754754 noColor: not isatty (stdout),
755755 startDir: getCurrentDir (),
756756 nimBinariesDir: getHomeDir () / " .nimble" / " nimbinaries" ,
757- maxTaggedVersions: 4
757+ maxTaggedVersions: 4 ,
758+ useSatSolver: true
758759 )
759760
760761proc handleUnknownFlags (options: var Options ) =
You can’t perform that action at this time.
0 commit comments