Skip to content

Commit

Permalink
Upd reg with empty
Browse files Browse the repository at this point in the history
  • Loading branch information
joente committed Jan 7, 2025
1 parent 10bf5a3 commit 1f9e294
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

RE_VAR = re.compile(r'^[_a-zA-Z][_0-9a-zA-Z]{0,40}$')
RE_TOKEN = re.compile(r'^[0-9a-f]{32}$')
RE_NUMBER = re.compile(r'^[1-9][0-9]*$')
RE_NUMBER = re.compile(r'^([1-9][0-9]*)?$')

TL = (tuple, list)
COMPOSE_KEYS = set(('environment', 'image'))
Expand Down
2 changes: 1 addition & 1 deletion lib/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '1.0.4-alpha0'
__version__ = '1.0.4-alpha1'

IS_RELEASE_VERSION = '-' not in __version__

0 comments on commit 1f9e294

Please sign in to comment.