Skip to content

Commit

Permalink
Fix doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonOresten committed Jun 11, 2024
1 parent 8e2dde4 commit 60fa402
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ jobs:
using Documenter: DocMeta, doctest
using InvariantPointAttention
DocMeta.setdocmeta!(InvariantPointAttention, :DocTestSetup, :(using InvariantPointAttention); recursive=true)
doctest(InvariantPointAttention)'
doctest(InvariantPointAttention)
1 change: 0 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ makedocs(;
modules=[InvariantPointAttention],
authors="Ben Murrell <[email protected]> and contributors",
sitename="InvariantPointAttention.jl",
doctest=false,
format=Documenter.HTML(;
canonical="https://murrellgroup.github.io/InvariantPointAttention.jl",
edit_link="main",
Expand Down

2 comments on commit 60fa402

@AntonOresten
Copy link
Member Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

  • Export IPCrossA and IPCrossAStructureModuleLayer layers.
  • Export IPA and IPAStructureModuleLayer layers, a special case of cross-attention, where the frames of the keys are the same as for the queries.
  • Export BackboneUpdate layer.
  • Export right_to_left_mask and left_to_right_mask functions.
  • Export virtual_residues function.
  • Export softmax1 function.

@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/108715

Tagging

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 v0.1.0 -m "<description of version>" 60fa40247b20d3aed724d90934d4f654ba2e8d5a
git push origin v0.1.0

Please sign in to comment.