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 9e39ed7 commit a0a17b1Copy full SHA for a0a17b1
setup.py
@@ -7,7 +7,7 @@
7
for line in Path("sphinx_togglebutton/__init__.py").read_text().split("\n")
8
if "__version__" in line
9
]
10
-version = version[0].split(" = ")[-1]
+version = version[0].split(" = ")[-1].strip('"')
11
12
with open("./README.rst", "r") as ff:
13
readme_text = ff.read()
sphinx_togglebutton/__init__.py
@@ -3,7 +3,7 @@
3
from docutils.parsers.rst import Directive, directives
4
from docutils import nodes
5
6
-__version__ = "0.0.3dev0"
+__version__ = "0.1.0dev0"
def st_static_path(app):
0 commit comments