Skip to content

Commit

Permalink
fix setup get version via en var
Browse files Browse the repository at this point in the history
  • Loading branch information
LuisLuii committed Jan 6, 2024
1 parent abfe1d3 commit 00d9dc5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import os

from setuptools import setup, find_packages

VERSION = '0.2.5'
VERSION = os.getenv("RELEASE_VERSION", default=None) or os.getenv("env.RELEASE_VERSION", default=None)

print(
"""
Expand Down

0 comments on commit 00d9dc5

Please sign in to comment.