Skip to content

Commit

Permalink
Merge pull request #448 from oscar-system/bl/extconfrace
Browse files Browse the repository at this point in the history
  • Loading branch information
benlorenz authored Aug 19, 2023
2 parents 982b863 + fc0393c commit d90b81c
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 = "Polymake"
uuid = "d720cf60-89b5-51f5-aff5-213f193123e7"
repo = "https://github.com/oscar-system/Polymake.jl.git"
version = "0.11.2"
version = "0.11.3"

[deps]
BinaryWrappers = "f01c122e-0ea1-4f85-ad8f-907073ad7a9f"
Expand Down
4 changes: 3 additions & 1 deletion src/Polymake.jl
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,11 @@ function __init__()
end

polymake_extension_config = joinpath(polymake_deps_tree, "extensions.json")
open(polymake_extension_config, "w") do file
tmpfile = tempname(polymake_deps_tree; cleanup=false)
open(tmpfile, "w") do file
JSON.print(file, Dict("Polymake::User::extensions" => extensionpaths))
end
Base.Filesystem.rename(tmpfile, polymake_extension_config)

# Temporarily unset PERL5LIB during initialization
# This variable can cause errors if the perl modules in this folder were not
Expand Down

2 comments on commit d90b81c

@benlorenz
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()

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

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.11.3 -m "<description of version>" d90b81c841508cf8ba26d6092fb9ad885a1c30bd
git push origin v0.11.3

Please sign in to comment.