Skip to content

Commit

Permalink
Merge pull request #52 from ACEsuit/co/cleanup
Browse files Browse the repository at this point in the history
Clean up Project.toml
  • Loading branch information
cortner committed Jun 19, 2023
2 parents df451ce + b447ca5 commit 38a04eb
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 10 deletions.
13 changes: 8 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,28 @@ version = "0.0.4"

[deps]
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
ExtXYZ = "352459e4-ddd7-4360-8937-99dcb397b478"
IterativeSolvers = "42fd0dbc-a981-5370-80f2-aaf504508153"
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
LowRankApprox = "898213cb-b102-5a47-900c-97e73b919f73"
Optim = "429524aa-4258-5aef-a3af-852621145aeb"
ParallelDataTransfer = "2dcacdae-9679-587a-88bb-8b444fb7085b"
PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
PyCall = "438e738f-606a-5dbb-bf0a-cddfbfd45ab0"
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
SharedArrays = "1a1011a3-84de-559e-8e89-a11a2f7dc383"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[compat]
julia = "1.6"
IterativeSolvers = "0.9.2"
LowRankApprox = "0.5.3"
Optim = "1.7"
ParallelDataTransfer = "0.5.0"
ProgressMeter = "1.7"
PyCall = "1.92"
StaticArrays = "1.5"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
test = ["Test", ]
14 changes: 10 additions & 4 deletions src/ACEfit.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
module ACEfit

using Requires

function __init__()
@require PyCall="438e738f-606a-5dbb-bf0a-cddfbfd45ab0" include("solvers_pycall.jl")
end
# CO: removed this since couldn't remove PyCall from the dependencies
# and no time to figure this out right now, sorry.
#
# using Requires
# function __init__()
# @require PyCall="438e738f-606a-5dbb-bf0a-cddfbfd45ab0" include("solvers_pycall.jl")
# end


include("solvers_pycall.jl")

include("bayesianlinear.jl")
include("data.jl")
Expand Down
1 change: 0 additions & 1 deletion src/solvers.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using LinearAlgebra: qr, I, norm
using LowRankApprox: pqrfact
using IterativeSolvers
using PyCall
using .BayesianLinear

@doc raw"""
Expand Down
2 changes: 2 additions & 0 deletions src/solvers_pycall.jl
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
using PyCall

@doc raw"""
SKLEARN_BRR
"""
Expand Down

0 comments on commit 38a04eb

Please sign in to comment.