Skip to content

Commit

Permalink
python 3.10, new version 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
haverland committed Sep 26, 2024
1 parent b7cdf4f commit 3e1b802
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: '3.9.12'
python-version: '3.10'
- name: Install dependencies for ${{ matrix.os }}
run: |
python -m pip install --upgrade pip wheel setuptools
Expand Down
2 changes: 1 addition & 1 deletion collectmeterdigits.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: collectmeterdigits
Version: 1.0.0
Version: 1.0.7
Summary: Reads images from digital meters.
Home-page: https://github.com/haverland/collectmeterdigits
Author: Frank Haverland
Expand Down
4 changes: 2 additions & 2 deletions collectmeterdigits/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ def main():
parser.add_argument('--nodownload', action='store_true',
help='Do not download pictures. Only remove duplicates and labeling.')
parser.add_argument('--startlabel', type=float, default=0.0, help='only images >= startlabel. (default: all)')
parser.add_argument('--savedublicates', action='store_true',
help='Save the dublicates in an intermediate subdirectory in raw_images.')
parser.add_argument('--saveduplicates', action='store_true',
help='Save the duplicates in an intermediate subdirectory in raw_images.')
parser.add_argument('--labelfile', default=None,
help='file with list of image urls if you want label specific images.')
parser.add_argument('--model', default=None, help='model file path if a external model should be used')
Expand Down

0 comments on commit 3e1b802

Please sign in to comment.