Skip to content

Commit

Permalink
Update Aqua.jl (#6)
Browse files Browse the repository at this point in the history
* Updated scripts

* Updated aqua
  • Loading branch information
raphasampaio authored Dec 27, 2023
1 parent 8a2a73d commit 26c7eae
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"julia.executablePath": "${env:JULIA_192}"
"julia.executablePath": "${env:JULIA_194}"
}
8 changes: 6 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[compat]
Aqua = "0.6"
Aqua = "0.6, 0.7, 0.8"
LinearAlgebra = "1.6 - 1.11"
Random = "1.6 - 1.11"
Statistics = "1"
StatsBase = "0.33"
StatsBase = "0.33, 0.34"
Test = "1.6 - 1.11"
TimerOutputs = "0.5"
julia = "1.6"

[extras]
Expand Down
4 changes: 2 additions & 2 deletions docs/docs.bat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
%JULIA_192% --project -e "using Pkg; Pkg.develop(PackageSpec(path=dirname(pwd()))); Pkg.instantiate()"
%JULIA_192% --project make.jl
%JULIA_194% --project -e "using Pkg; Pkg.develop(PackageSpec(path=dirname(pwd()))); Pkg.instantiate()"
%JULIA_194% --project make.jl
4 changes: 2 additions & 2 deletions docs/docs.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

$JULIA_192 --project -e "using Pkg; Pkg.develop(PackageSpec(path=dirname(pwd()))); Pkg.instantiate()"
$JULIA_192 --project make.jl
$JULIA_194 --project -e "using Pkg; Pkg.develop(PackageSpec(path=dirname(pwd()))); Pkg.instantiate()"
$JULIA_194 --project make.jl
2 changes: 1 addition & 1 deletion format/format.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

SET BASEPATH=%~dp0

%JULIA_192% --project=%BASEPATH% %BASEPATH%\format.jl
CALL "%JULIA_194%" --project=%BASEPATH% %BASEPATH%\format.jl
2 changes: 1 addition & 1 deletion format/format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

BASEPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

$JULIA_192 --project=$BASEPATH $BASEPATH/format.jl
$JULIA_194 --project=$BASEPATH $BASEPATH/format.jl
2 changes: 1 addition & 1 deletion revise/revise.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

SET BASEPATH=%~dp0

%JULIA_192% --project=%BASEPATH% --interactive --load=%BASEPATH%\revise.jl
CALL "%JULIA_194%" --project=%BASEPATH% --interactive --load=%BASEPATH%\revise.jl
2 changes: 1 addition & 1 deletion revise/revise.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

BASEPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

$JULIA_192 --project=$BASEPATH --interactive $BASEPATH/revise.jl
$JULIA_194 --project=$BASEPATH --interactive $BASEPATH/revise.jl
2 changes: 1 addition & 1 deletion test/test.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

SET BASEPATH=%~dp0

%JULIA_192% --project=%BASEPATH%\.. -e "import Pkg; Pkg.test()"
CALL "%JULIA_194%" --project=%BASEPATH%\.. -e "import Pkg; Pkg.test()"
2 changes: 1 addition & 1 deletion test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

BASEPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

$JULIA_192 --project=$BASEPATH/.. -e "import Pkg; Pkg.test()"
$JULIA_194 --project=$BASEPATH/.. -e "import Pkg; Pkg.test()"

0 comments on commit 26c7eae

Please sign in to comment.