Unverified Commit 5c1e62ff authored by Nicolas Hug's avatar Nicolas Hug Committed by GitHub
Browse files

Convert v2 doc warning into a note (#7867)

parent 6f72b76c
...@@ -5,20 +5,20 @@ from docutils.parsers.rst import Directive ...@@ -5,20 +5,20 @@ from docutils.parsers.rst import Directive
class BetaStatus(Directive): class BetaStatus(Directive):
has_content = True has_content = True
text = "The {api_name} is in Beta stage, and backward compatibility is not guaranteed." text = "The {api_name} is in Beta stage, and backward compatibility is not guaranteed."
node = nodes.warning
def run(self): def run(self):
text = self.text.format(api_name=" ".join(self.content)) text = self.text.format(api_name=" ".join(self.content))
return [nodes.warning("", nodes.paragraph("", "", nodes.Text(text)))] return [self.node("", nodes.paragraph("", "", nodes.Text(text)))]
class V2BetaStatus(BetaStatus): class V2BetaStatus(BetaStatus):
text = ( text = (
"The {api_name} is in Beta stage, and while we do not expect major breaking changes, " "The {api_name} is in Beta stage, and while we do not expect disruptive breaking changes, "
"some APIs may still change according to user feedback. Please submit any feedback you may have " "some APIs may slightly change according to user feedback. Please submit any feedback you may have "
"in this issue: https://github.com/pytorch/vision/issues/6753, and you can also check " "in this issue: https://github.com/pytorch/vision/issues/6753."
"out https://github.com/pytorch/vision/issues/7319 to learn "
"more about the APIs that we suspect might involve future changes."
) )
node = nodes.note
def setup(app): def setup(app):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment