Skip to content

Commit

Permalink
uncomment
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelbiron committed Oct 17, 2024
1 parent 015e52e commit 62efa3d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[deps]
AdvancedHMC = "0bf59076-c3b1-5ca4-86bd-e02cd72cde3d"
ArgMacros = "dbc42088-9de8-42a0-8ec8-2cd114e1ea3e"
#Bijectors = "76274a88-744f-5084-9051-94815aaf08c4"
Bijectors = "76274a88-744f-5084-9051-94815aaf08c4"
BridgeStan = "c88b6f0a-829e-4b0b-94b7-f06ab5908f5a"
Comrade = "99d987ce-9a1e-4df8-bc0b-1ea019aa547b"
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
Expand Down
2 changes: 1 addition & 1 deletion test/supporting/setup.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# use single statement to avoid multiple precompile stages
using Pigeons,
ArgMacros,
#Bijectors,
Bijectors,
BridgeStan,
DelimitedFiles,
Distributions,
Expand Down
4 changes: 2 additions & 2 deletions test/test_DistributionLogPotential.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# using Bijectors
using Bijectors
using DelimitedFiles

include("supporting/mpi_test_utils.jl")
Expand Down Expand Up @@ -30,7 +30,7 @@ end
@test abs(Pigeons.global_barrier(pt) - 3.15) < 0.1
end

@static if false#!is_windows_in_CI()
@static if !is_windows_in_CI()
@testset "DLP: Stan interface + iid sampling" begin
# recreate Fig. 6 in Ballnus et al. (2017)

Expand Down

2 comments on commit 62efa3d

@miguelbiron
Copy link
Collaborator 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/117515

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

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.4.6 -m "<description of version>" 62efa3d89819ea635c956e6d9f0766167e7b764e
git push origin v0.4.6

Please sign in to comment.