Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wumpus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tessaris Sergio
wumpus
Compare revisions
7d16a1bd8b65105f822bc95e8e1faa9a45e07a7b to main
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
tessaris/wumpus
Select target project
No results found
main
Select Git revision
Swap
Target
Davide.Lanti1/wumpus-tessaris
Select target project
Davide.Lanti1/wumpus-tessaris-1
Davide.Lanti1/wumpus-tessaris
Asma.Tajuddin/wumpus
Ali.Ahmed/wumpus
Sanaz.Khosropour/wumpus
PetroMakanza.Joseph/wumpus
tessaris/wumpus
7 results
7d16a1bd8b65105f822bc95e8e1faa9a45e07a7b
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (5)
build: pin gym version and install by default
· c8d7e266
Tessaris Sergio
authored
2 years ago
c8d7e266
fix: pin gym environment before new API
· 85b430ba
Tessaris Sergio
authored
2 years ago
85b430ba
build: relax gym requirements
· 2278b74f
Tessaris Sergio
authored
2 years ago
2278b74f
version bump
· f706c3e9
Tessaris Sergio
authored
2 years ago
f706c3e9
Merge branch 'dev' into 'master'
· adc5ff9d
Tessaris Sergio
authored
2 years ago
Gym dependency See merge request
!1
adc5ff9d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
examples/environment.yml
+4
-3
4 additions, 3 deletions
examples/environment.yml
setup.cfg
+4
-5
4 additions, 5 deletions
setup.cfg
wumpus/__init__.py
+1
-1
1 addition, 1 deletion
wumpus/__init__.py
with
9 additions
and
9 deletions
examples/environment.yml
View file @
adc5ff9d
name
:
wumpus
channels
:
-
conda-forge
-
nodefaults
dependencies
:
-
python>=3.
6
-
gym
-
python>=3.
8
-
gym
<=0.22
-
pip
-
pip
:
-
wumpus[gym] @ git+https://gitlab.inf.unibz.it/tessaris/wumpus.git
\ No newline at end of file
-
wumpus @ https://gitlab.inf.unibz.it/tessaris/wumpus/-/archive/dev/wumpus-dev.zip
\ No newline at end of file
This diff is collapsed.
Click to expand it.
setup.cfg
View file @
adc5ff9d
[metadata]
name
=
wumpus
version
=
attr:wumpus.__version__
description
=
My
package
description
description
=
This
package
implements a Python version of the Hunt the Wumpus game as described in the book Artificial Intelligence: A Modern Approach by Russell and Norvig.
long_description
=
file: README.md
license
=
MIT
author
=
Sergio Tessaris
...
...
@@ -11,11 +11,10 @@ author_email = tessaris@inf.unibz.it
zip_safe
=
False
include_package_data
=
True
packages
=
find:
python_requires
=
>=3.7
python_requires
=
>=3.8
install_requires
=
gym
<
0.24
[options.entry_points]
console_scripts
=
gridrunner
=
wumpus.cli:main
[options.extras_require]
gym
=
gym
This diff is collapsed.
Click to expand it.
wumpus/__init__.py
View file @
adc5ff9d
...
...
@@ -3,4 +3,4 @@ from .player import OfflinePlayer, OnlinePlayer, UserPlayer, RandomPlayer
from
.wumpus
import
WumpusWorld
,
Hunter
,
Wumpus
,
Pit
,
Gold
,
Exit
from
.runner
import
run_episode
__version__
=
'
1.
0.1
'
__version__
=
'
1.
1.0
'
This diff is collapsed.
Click to expand it.