Skip to content

Commit

Permalink
Move RTD conf file
Browse files Browse the repository at this point in the history
  • Loading branch information
flferretti committed Oct 4, 2023
1 parent 77c05e6 commit 1abd2bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ python:
- requirements: docs/requirements.txt

sphinx:
configuration: docs/source/conf.py
configuration: docs/conf.py

formats: all
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

# -- Version information

sys.path.insert(0, pathlib.Path(__file__).parents[2].absolute())
sys.path.insert(0, pathlib.Path(__file__).parent.absolute())
version_file = (
pathlib.Path(__file__).parents[2].absolute() / "src" / "jaxsim" / "version.txt"
pathlib.Path(__file__).parent.absolute() / "src" / "jaxsim" / "version.txt"
)

with open(version_file) as file_handler:
Expand Down

0 comments on commit 1abd2bc

Please sign in to comment.