diff --git a/.doctrees/cli.doctree b/.doctrees/cli.doctree index fcdf0c97..9da66d1d 100644 Binary files a/.doctrees/cli.doctree and b/.doctrees/cli.doctree differ diff --git a/.doctrees/environment.pickle b/.doctrees/environment.pickle index cd8159c9..f5d4c289 100644 Binary files a/.doctrees/environment.pickle and b/.doctrees/environment.pickle differ diff --git a/.doctrees/quickstart.doctree b/.doctrees/quickstart.doctree index 498689fa..9bf579d5 100644 Binary files a/.doctrees/quickstart.doctree and b/.doctrees/quickstart.doctree differ diff --git a/.doctrees/usage/cli.doctree b/.doctrees/usage/cli.doctree index d7f1a226..5a1d6dd8 100644 Binary files a/.doctrees/usage/cli.doctree and b/.doctrees/usage/cli.doctree differ diff --git a/.doctrees/usage/load_environment.doctree b/.doctrees/usage/load_environment.doctree index d2a19f57..d7fcd7b7 100644 Binary files a/.doctrees/usage/load_environment.doctree and b/.doctrees/usage/load_environment.doctree differ diff --git a/_modules/citylearn/data.html b/_modules/citylearn/data.html index 4949490d..697a2954 100644 --- a/_modules/citylearn/data.html +++ b/_modules/citylearn/data.html @@ -221,7 +221,7 @@

Source code for citylearn.data

         # check that dataset does not already exist using the schema as a proxy
         if not os.path.isfile(schema_filepath):
             LOGGER.info(f'The {name} dataset DNE in cache. Will download from '
-                f'{self.github_account}/{self.repository}/tree/v{self.tag} GitHub repository and write to {datasets_directory}. '
+                f'{self.github_account}/{self.repository}/tree/{self.tag} GitHub repository and write to {datasets_directory}. '
                     f'Next time DataSet.get_dataset(\'{name}\') is called, it will read '
                         'from cache unless DataSet.clear_cache is run first.')
             contents = self.get_github_contents(path)
@@ -271,7 +271,7 @@ 

Source code for citylearn.data

         
         else:
             LOGGER.info(f'The dataset names DNE in cache. Will download from '
-                f'{self.github_account}/{self.repository}/tree/v{self.tag} GitHub repository and write to {filepath}. '
+                f'{self.github_account}/{self.repository}/tree/{self.tag} GitHub repository and write to {filepath}. '
                     'Next time DataSet.get_dataset_names is called, it will read '
                         'from cache unless DataSet.clear_cache is run first.')
             contents = [
@@ -304,7 +304,7 @@ 

Source code for citylearn.data

         # check that file DNE
         if not os.path.isfile(filepath):
             LOGGER.info(f'The PV sizing data DNE in cache. Will download from '
-                f'{self.github_account}/{self.repository}/tree/v{self.tag} GitHub repository and write to {misc_directory}. '
+                f'{self.github_account}/{self.repository}/tree/{self.tag} GitHub repository and write to {misc_directory}. '
                     'Next time DataSet.get_pv_sizing_data is called, it will read '
                         'from cache unless DataSet.clear_cache is run first.')
             contents = self.get_github_contents(path)
@@ -340,7 +340,7 @@ 

Source code for citylearn.data

         # check that file DNE
         if not os.path.isfile(filepath):
             LOGGER.info(f'The battery sizing data DNE in cache. Will download from '
-                f'{self.github_account}/{self.repository}/tree/v{self.tag} GitHub repository and write to {misc_directory}. '
+                f'{self.github_account}/{self.repository}/tree/{self.tag} GitHub repository and write to {misc_directory}. '
                     'Next time DataSet.get_battery_sizing_data is called, it will read '
                         'from cache unless DataSet.clear_cache is run first.')
             contents = self.get_github_contents(path)