forked from ros2/ros2_documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* committing version test * remove tags Signed-off-by: maryaB-osr <[email protected]> * adding whitelists and trying released/in-development Signed-off-by: maryaB-osr <[email protected]> * comment out unused config with wrong type causing warning * Enable pulling from origin and released flag * Example warning banner * reverse order and move version list below navigation Signed-off-by: maryaB-osr <[email protected]> * reorder version list Signed-off-by: maryaB-osr <[email protected]> * refactored after separating versions Signed-off-by: maryaB-osr <[email protected]> * lowercase branch names, add dashing Signed-off-by: maryaB-osr <[email protected]> * fixing branch versioning Signed-off-by: maryaB-osr <[email protected]> * travis.yml: pip3 install sphinx_multiversion Signed-off-by: maryaB-osr <[email protected]> * remove missing-reference function Signed-off-by: maryaB-osr <[email protected]> * fix typo Signed-off-by: maryaB-osr <[email protected]> * no env config video for rolling Signed-off-by: maryaB-osr <[email protected]> Co-authored-by: Tully Foote <[email protected]>
- Loading branch information
1 parent
36ace2a
commit 5a8499a
Showing
98 changed files
with
480 additions
and
7,828 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
import os.path | ||
from setuptools import setup | ||
|
||
with open(os.path.join(os.path.dirname(__file__), "README.md")) as f: | ||
readme = f.read() | ||
|
||
setup( | ||
name="sphinx-multiversion", | ||
description="Add support for multiple versions to sphinx", | ||
long_description=readme, | ||
long_description_content_type="text/markdown", | ||
classifiers=[ | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
], | ||
author="Jan Holthuis", | ||
author_email="[email protected]", | ||
url="https://holzhaus.github.io/sphinx-multiversion/", | ||
version="0.2.4", | ||
install_requires=["sphinx >= 2.1"], | ||
license="BSD", | ||
packages=["sphinx_multiversion"], | ||
entry_points={ | ||
"console_scripts": ["sphinx-multiversion=sphinx_multiversion:main",], | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.