Skip to content
This repository has been archived by the owner on May 21, 2022. It is now read-only.

Move PenaltyFunctions and LearningStrategies from build.jl to REQUIRE #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions REQUIRE
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ LearnBase
LossFunctions
MLDataUtils
CatViews
PenaltyFunctions
LearningStrategies
4 changes: 2 additions & 2 deletions deps/build.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

for pkg in ("Transformations", "ObjectiveFunctions", "StochasticOptimization", "MLMetrics", "PenaltyFunctions", "LearningStrategies")
org = pkg == "CatViews" ? "ahwillia" : "JuliaML"
for pkg in ("Transformations", "ObjectiveFunctions", "StochasticOptimization", "MLMetrics")
org = "JuliaML"
try
avail = Pkg.available(pkg)
if !isempty(avail)
Expand Down