Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove travis from docs #1017

Merged
merged 1 commit into from
Jan 19, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 1 addition & 11 deletions documentation/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
]

read_the_docs_build = os.environ.get("READTHEDOCS", None) == "True"
travis_build = os.environ.get("TRAVIS_CI", None) == "True"

# Get version of Doxygen and save it as a tuple

Expand All @@ -58,16 +57,7 @@
# convert from bytes to string
git_tag = git_tag.decode("ascii")

if travis_build:

# Don't attempt to set the path as breathe is installed to virtualenv on travis

# Set values with simple strings
version = "'travis'"
release = "'travis'"
documentation_build = "travis"

elif read_the_docs_build:
if read_the_docs_build:

# On RTD we'll be in the 'source' directory
sys.path.append("../../")
Expand Down
Loading