Skip to content

Commit

Permalink
Change installed to gaussdca_installed
Browse files Browse the repository at this point in the history
  • Loading branch information
diegozea committed Sep 14, 2023
1 parent 3bf89c4 commit 065f9aa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/Information/Externals.jl
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
if VERSION >= v"1.5.0"
installed = false
gaussdca_installed = false
try
using Pkg
Pkg.add(PackageSpec(url="https://github.com/carlobaldassi/GaussDCA.jl", rev="master"))
installed = true
gaussdca_installed = true
catch err
@warn "GaussDCA.jl not installed: $err"
@warn "GaussDCA.jl not gaussdca_installed: $err"
end

if installed
if gaussdca_installed
msa = map(Residue, rand(1:21,100,20))
dca = gaussdca(msa, min_separation=2)

Expand Down

2 comments on commit 065f9aa

@diegozea
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/91432

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v2.13.1 -m "<description of version>" 065f9aa532480731531b44f23290510cc48c092e
git push origin v2.13.1

Please sign in to comment.