Skip to content

Commit

Permalink
Another fix for version handling
Browse files Browse the repository at this point in the history
  • Loading branch information
elkanamol committed Sep 1, 2024
1 parent 66555bb commit a3ab066
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
This setup configuration includes the package metadata, such as the name, version, description, author, license, and URLs for the project. It also specifies the required Python version, the packages to be included, and the console script entry point.
"""

from sierra_status.__version__ import __version__
from setuptools import setup, find_packages
import os

version = "0.1.2"
version = __version__
# User-friendly description from README.md
current_directory = os.path.dirname(os.path.abspath(__file__))
try:
Expand Down
3 changes: 1 addition & 2 deletions sierra_status/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
from ..setup import version
__version__ = version # Update this version as needed
__version__ = "0.1.2" # Update this version as needed

0 comments on commit a3ab066

Please sign in to comment.