diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7e525ae..a4fa05d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/collectmeterdigits.egg-info/PKG-INFO b/collectmeterdigits.egg-info/PKG-INFO index 48150fd..9d26788 100644 --- a/collectmeterdigits.egg-info/PKG-INFO +++ b/collectmeterdigits.egg-info/PKG-INFO @@ -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 diff --git a/collectmeterdigits/__main__.py b/collectmeterdigits/__main__.py index a8bc587..8f051eb 100644 --- a/collectmeterdigits/__main__.py +++ b/collectmeterdigits/__main__.py @@ -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')