Skip to content

Commit

Permalink
suppress celllistmap warning
Browse files Browse the repository at this point in the history
  • Loading branch information
lmiq committed May 16, 2024
1 parent de18142 commit d3cf38a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ComplexMixtures"
uuid = "6f35c628-ac57-5bae-8ea9-703a8964f6e9"
authors = ["Leandro Martinez <lmartine@unicamp.br>"]
version = "1.4.3"
version = "1.4.4"

[deps]
CellListMap = "69e1c6dd-3888-40e6-b3c8-31ac5f578864"
Expand Down
4 changes: 3 additions & 1 deletion src/ComplexMixtures.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ export overview
export VMDselect

function __init__()
if !haskey(ENV, "COMPLEXMIXTURES_WARNING_v1.4") || ENV["COMPLEXMIXTURES_WARNING_v1.4"] == true
# Suppress warnings from CellListMap
ENV["CELLLISTMAP_8.3_WARNING"] = "false"
if !haskey(ENV, "COMPLEXMIXTURES_WARNING_v1.4") || ENV["COMPLEXMIXTURES_WARNING_v1.4"] == "true"
@warn """\n
ComplexMixtures - v1.4.2
Expand Down

2 comments on commit d3cf38a

@lmiq
Copy link
Member Author

@lmiq lmiq commented on d3cf38a May 16, 2024

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

  • Suppress CellListMap warning.

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

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 v1.4.4 -m "<description of version>" d3cf38ae9a7f315a4ba4e9cb8f4aa6b6cfafbd86
git push origin v1.4.4

Please sign in to comment.