We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e645b76 commit b6179c1Copy full SHA for b6179c1
pyproject.toml
@@ -55,7 +55,11 @@ include = [
55
"/src",
56
]
57
58
+[tool.setuptools_scm]
59
60
+write_to = "src/flynt/_git_version.py"
61
+version_scheme = "no-guess-dev"
62
+local_scheme = "node-and-date"
63
64
[tool.mypy]
65
exclude = "test/integration/(actual|expected|samples).*"
src/flynt/__init__.py
@@ -2,7 +2,7 @@
2
from old "%-formatted" and .format(...) strings into Python 3.6+'s f-strings.
3
Learn more about f-strings at https://www.python.org/dev/peps/pep-0498/"""
4
5
-__version__ = "1.0.3"
+__version__ = "1.0.4"
6
7
from flynt.cli import main
8
0 commit comments