We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52cd68d commit 1ed45b7Copy full SHA for 1ed45b7
docs/conf.py
@@ -191,7 +191,9 @@ def _get_github_source_url(repo: git.Repo) -> str:
191
def apply(self, **kwargs: Any) -> None: # type: ignore[bad-override]
192
try:
193
local_repo = git.Repo(search_parent_directories=True)
194
- remote_repo_url = self._get_github_source_url(local_repo)
+ # Hardcode github url for now due to errors when building in a different environment
195
+ # remote_repo_url = self._get_github_source_url(local_repo)
196
+ remote_repo_url = "https://github.com/NVIDIA-NeMo/RL"
197
except Exception:
198
# Cannot figure out which source url it should be; leave links as-is.
199
return
0 commit comments