Skip to content

Commit 77af1bb

Browse files
committed
Grab release version in setup.py from environment variable
1 parent cb7db14 commit 77af1bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
Generated by: https://openapi-generator.tech
99
"""
1010

11-
11+
import os
1212
from setuptools import setup, find_packages # noqa: H301
1313

1414
NAME = "bandwidth-sdk"
15-
VERSION = "1.0.0"
15+
VERSION = os.environ['RELEASE_VERSION']
1616
# To install the library, run the following
1717
#
1818
# python setup.py install

0 commit comments

Comments
 (0)