Skip to content

Commit

Permalink
Merge pull request #25 from lkruse/master
Browse files Browse the repository at this point in the history
upgraded to POMDPTools
  • Loading branch information
zsunberg authored Jul 25, 2022
2 parents 3630ddf + a5e228a commit 23111df
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 12 deletions.
11 changes: 4 additions & 7 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,25 @@ name = "TabularTDLearning"
uuid = "df77095f-98f0-51e5-a706-d0ff5a5ad33f"
license = "MIT"
repo = "https://github.com/JuliaPOMDP/TabularTDLearning.jl"
version = "0.4.2"
version = "0.4.3"

[deps]
POMDPLinter = "f3bd98c0-eb40-45e2-9eb1-f2763262d755"
POMDPPolicies = "182e52fb-cfd0-5e46-8c26-fd0667c990f4"
POMDPSimulators = "e0d0a172-29c6-5d4e-96d0-f262df5d01fd"
POMDPTools = "7588e00f-9cae-40de-98dc-e0c70c48cdd7"
POMDPs = "a93abf59-7444-517b-a68a-c42f96afdd7d"
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"

[compat]
POMDPLinter = "0.1"
POMDPPolicies = "0.3, 0.4"
POMDPSimulators = "0.3"
POMDPs = "0.9"
POMDPTools = "0.1"
Parameters = "0.12"
julia = "1"

[extras]
POMDPModels = "355abbd5-f08e-5560-ac9e-8b5f2592a0ca"
POMDPTesting = "92e6a534-49c2-5324-9027-86e3c861ab81"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["POMDPModels", "POMDPTesting", "Test"]
test = ["POMDPModels", "Test"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ POMDPs.add("TabularTDLearning")

```julia
using TabularTDLearning
using POMDPPolicies
using POMDPModels
using POMDPTools

mdp = GridWorld()
# use Q-Learning
Expand Down
3 changes: 1 addition & 2 deletions src/TabularTDLearning.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ module TabularTDLearning

using POMDPs
using POMDPLinter
using POMDPPolicies
using POMDPSimulators
using POMDPTools
using Parameters
using Random

Expand Down
3 changes: 1 addition & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
using TabularTDLearning
using POMDPs
using POMDPModels
using POMDPPolicies
using POMDPTesting
using POMDPTools
using Random
using Test
import POMDPLinter: @show_requirements
Expand Down

2 comments on commit 23111df

@zsunberg
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/64963

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.3 -m "<description of version>" 23111dff1c6d0fee8a074f47d1cd7b060df69907
git push origin v0.4.3

Please sign in to comment.