diff --git a/setup.py b/setup.py index fc0f74dec..581d9d3a5 100644 --- a/setup.py +++ b/setup.py @@ -168,7 +168,7 @@ def build_minecraft(source_dir, build_dir): name='minerl', # TODO(shwang): Load from minerl.version.VERSION or something so we don't have to update # multiple version strings. - version=os.environ.get('MINERL_BUILD_VERSION', '0.4.2'), + version=os.environ.get('MINERL_BUILD_VERSION', '0.4.2.1'), description='MineRL environment and data loader for reinforcement learning from human demonstration in Minecraft', long_description=markdown, long_description_content_type="text/markdown", diff --git a/tests/local/handler_test.py b/tests/local/handler_test.py index 475ebc904..83c27ad89 100644 --- a/tests/local/handler_test.py +++ b/tests/local/handler_test.py @@ -186,11 +186,8 @@ def test_dense_env(): def test_env(environment='MineRLObtainTest-v0', interactive=False): - if not interactive: - # Disable tests for now - pass # assert False - inst = InstanceManager.add_existing_instance(9001) - env = gym.make(environment, instances=[inst]) + + env = gym.make(environment) done = False inventories = [] rewards = []