Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #53 from cpainchaud/main
Browse files Browse the repository at this point in the history
bugfix: software version formatting
  • Loading branch information
cpainchaud authored Oct 18, 2021
2 parents ee974d7 + 096dcaa commit 30fe0c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion reolink/software_version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import re

version_regex = re.compile(r"^v(?P<major>[0-9]+)\.(?P<middle>[0-9]+)\.(?P<minor>[0-9]+).(?P<build>[0-9]+)_([0-9]+)$")
version_regex = re.compile(r"^v(?P<major>[0-9]+)\.(?P<middle>[0-9]+)\.(?P<minor>[0-9]+).(?P<build>[0-9]+)_([0-9]+)")


class SoftwareVersion:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name='reolink',
packages=['reolink'],
version='0.0.31',
version='0.0.32',
license='MIT',
description='Reolink camera package',
author='fwestenberg',
Expand Down

0 comments on commit 30fe0c6

Please sign in to comment.