Skip to content

Commit

Permalink
Update deps versions (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
oyamad authored Mar 3, 2022
1 parent d954120 commit bcdea29
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "GameTheory"
uuid = "64a4ffa8-f47c-4a47-8dad-aee7aadc3b51"
repo = "https://github.com/QuantEcon/GameTheory.jl.git"
version = "0.1.0"
version = "0.1.1"

[deps]
Clp = "e2554f3b-3117-50c0-817c-e040a3ddf72d"
Expand All @@ -16,15 +16,15 @@ QuantEcon = "fcd29c91-0bd7-5a09-975d-7ac3f643a60c"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"

[compat]
Clp = "0.8, 0.9, 1"
Clp = "1"
Combinatorics = "1"
LRSLib = "0.7.2, 0.8"
LRSLib = "0.8"
LightGraphs = "1"
MathOptInterface = "0.9.6, 0.10, 1"
MathOptInterface = "1"
Parameters = "0.12"
Polyhedra = "0.6, 0.7"
Polyhedra = "0.7"
QuantEcon = "0.16.0"
julia = "1.3"
julia = "1.6"

[extras]
CDDLib = "3391f64e-dcde-5f30-b752-e11513730f60"
Expand Down
2 changes: 1 addition & 1 deletion test/test_normal_form_game.jl
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ using CDDLib
function clp_optimizer_silent_maxiter1()
optimizer = Clp.Optimizer()
MOI.set(optimizer, MOI.Silent(), true)
MOI.set(optimizer, MOI.RawParameter("MaximumIterations"), 1)
MOI.set(optimizer, MOI.RawOptimizerAttribute("MaximumIterations"), 1)
return optimizer
end
lp_solver = clp_optimizer_silent_maxiter1
Expand Down

2 comments on commit bcdea29

@oyamad
Copy link
Member Author

@oyamad oyamad commented on bcdea29 Mar 3, 2022

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/55854

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.1 -m "<description of version>" bcdea298ea7eda7748fd0d24d9c89f0168b94fcc
git push origin v0.1.1

Please sign in to comment.