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 23e549d commit 7d3993cCopy full SHA for 7d3993c
.github/workflows/release.yml
@@ -69,3 +69,4 @@ jobs:
69
pypi-username: ${{ secrets.PYPI_USERNAME }}
70
pypi-password: ${{ secrets.PYPI_PASSWORD }}
71
main-branch: "master"
72
+ version-file-path: "src/firebolt_db/__init__.py"
setup.cfg
@@ -1,6 +1,6 @@
1
[metadata]
2
name = firebolt_sqlalchemy
3
-version = 0.2.0
+version = attr: firebolt_db.__version__
4
description = Sqlalchemy adapter for Firebolt
5
long_description = file: README.md
6
long_description_content_type = text/markdown
src/firebolt_db/__init__.py
@@ -15,7 +15,7 @@
15
"Warning",
16
]
17
18
-
+__version__ = "0.2.0"
19
apilevel = "2.0"
20
# Threads may share the module and connections
21
threadsafety = 1
0 commit comments