Skip to content

Commit

Permalink
Fix __packaging__.py format for pre-commit (#640)
Browse files Browse the repository at this point in the history
  • Loading branch information
roekatz committed Aug 7, 2024
1 parent 0d7a39e commit cb7eff8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/__packaging__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"""

import os
# VERSION is a placeholder, the real version is set by the release CI/CD pipeline
VERSION = (0, 0, 0)

VERSION = (0, 0, 0) # Placeholder, to be set by CI/CD
VERSION_STRING = ".".join(map(str, VERSION))

__version__ = VERSION_STRING
Expand Down

0 comments on commit cb7eff8

Please sign in to comment.