mirror of
https://github.com/meshtastic/python.git
synced 2025-12-31 03:47:55 -05:00
change version format
This commit is contained in:
@@ -46,7 +46,7 @@ def test_main_init_parser_version(capsys):
|
||||
assert pytest_wrapped_e.type == SystemExit
|
||||
assert pytest_wrapped_e.value.code == 0
|
||||
out, err = capsys.readouterr()
|
||||
assert re.match(r'[0-9]+\.[0-9]+\.[0-9]', out)
|
||||
assert re.match(r'[0-9]+\.[0-9a-z]+\.[0-9]', out)
|
||||
assert err == ''
|
||||
|
||||
|
||||
@@ -62,7 +62,7 @@ def test_main_main_version(capsys):
|
||||
assert pytest_wrapped_e.type == SystemExit
|
||||
assert pytest_wrapped_e.value.code == 0
|
||||
out, err = capsys.readouterr()
|
||||
assert re.match(r'[0-9]+\.[0-9]+\.[0-9]', out)
|
||||
assert re.match(r'[0-9]+\.[0-9a-z]+\.[0-9]', out)
|
||||
assert err == ''
|
||||
|
||||
|
||||
|
||||
2
setup.py
2
setup.py
@@ -12,7 +12,7 @@ with open("README.md", "r") as fh:
|
||||
# This call to setup() does all the work
|
||||
setup(
|
||||
name="meshtastic",
|
||||
version="1.3alpha.0",
|
||||
version="1.3alpha0.0",
|
||||
description="Python API & client shell for talking to Meshtastic devices",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
|
||||
Reference in New Issue
Block a user