We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e154e07 commit b6d52b9Copy full SHA for b6d52b9
semantic-conventions/dev-requirements.txt
@@ -1,4 +1,4 @@
1
-black==22.3.0
+black==24.2.0
2
mypy==0.910
3
pytest==8.1.1
4
flake8==7.0.0
semantic-conventions/setup.py
@@ -15,7 +15,7 @@
15
PUBLIC_VERSION = PACKAGE_INFO["__version__"]
16
17
setuptools.setup(
18
- version=PUBLIC_VERSION
19
- if not VERSION_SUFFIX
20
- else PUBLIC_VERSION + "+" + VERSION_SUFFIX
+ version=(
+ PUBLIC_VERSION if not VERSION_SUFFIX else PUBLIC_VERSION + "+" + VERSION_SUFFIX
+ )
21
)
0 commit comments