Skip to content

Commit

Permalink
Merge pull request #22 from mohamed-barakat/CAP
Browse files Browse the repository at this point in the history
Cap
  • Loading branch information
mohamed-barakat authored Jul 16, 2021
2 parents 5a91d11 + 4c71f30 commit dbc373f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "CapAndHomalg"
uuid = "c4774649-1891-41ea-a883-87141804c57c"
authors = ["Mohamed Barakat <[email protected]>"]
version = "1.1.6"
version = "1.1.7"

[deps]
GAP = "c863536a-3901-11e9-33e7-d5cd0df7b904"
Expand Down
2 changes: 1 addition & 1 deletion bin/gap-with-cap-and-homalg-via-julia
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ exec julia --startup-file=no -- "${BASH_SOURCE[0]}" "$@"
=#

# pass command line arguments to GAP.jl via a small hack
ENV["GAP_SHOW_BANNER"] = "true"
ENV["GAP_PRINT_BANNER"] = "true"
__GAP_ARGS__ = ARGS
using CapAndHomalg
SizeScreen(SIZE_SCREEN_ORIGINAL)
Expand Down
2 changes: 1 addition & 1 deletion docs/src/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ julia> Sgrmod = GradedLeftPresentations( S )
GAP: The category of graded left f.p. modules over Q[x,y] (with weights [ 1, 1 ])
julia> InfoOfInstalledOperationsOfCategory( Sgrmod )
40 primitive operations were used to derive 179 operations for this category which
40 primitive operations were used to derive 172 operations for this category which
* IsAbCategory
* IsMonoidalCategory
* IsAbelianCategoryWithEnoughProjectives
Expand Down
4 changes: 2 additions & 2 deletions src/CapAndHomalg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ function __init__()

UseSystemSingular(false)

if haskey(ENV, "CAP_AND_HOMALG_SHOW_BANNER")
show_banner = ENV["CAP_AND_HOMALG_SHOW_BANNER"] == "true"
if haskey(ENV, "CAP_AND_HOMALG_PRINT_BANNER")
show_banner = ENV["CAP_AND_HOMALG_PRINT_BANNER"] == "true"
else
show_banner =
isinteractive() && !any(x -> x.name in ["Oscar", "HomalgProject"], keys(Base.package_locks))
Expand Down

2 comments on commit dbc373f

@mohamed-barakat
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
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/41002

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

Please sign in to comment.