We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbf573c commit 6d603e0Copy full SHA for 6d603e0
3 files changed
archivist/.gitignore
@@ -0,0 +1 @@
1
+about.py
archivist/__init__.py
@@ -1,6 +1,2 @@
"""Archivist SDK
2
-
3
- WARNING: Do **not** edit directly
4
- This file is auto-generated by ./scripts/version.sh
5
"""
6
-__version__ = "0.0.1"
scripts/version.sh
@@ -4,11 +4,13 @@
#
version=$(python3 setup.py --version)
7
-cat>archivist/__init__.py <<EOF
+cat>archivist/about.py <<EOF
8
9
10
WARNING: Do **not** edit directly
11
+ This file is auto-generated by ./scripts/version.sh and is
12
+ not version controlled by git (ironically) as this would
13
+ make the generated version from the tag 'dirty'
14
15
__version__ = "$version"
16
EOF
0 commit comments