diff --git a/.github/workflows/test_package.yml b/.github/workflows/test_package.yml index 7337f20..573f412 100644 --- a/.github/workflows/test_package.yml +++ b/.github/workflows/test_package.yml @@ -6,6 +6,9 @@ on: release: types: [published] workflow_dispatch: + inputs: + wheel_version: + default: 2.15.2 jobs: job1: @@ -24,7 +27,7 @@ jobs: python-version: ${{ matrix.python_version }} - name: Install dependencies run: | - python -m pip install pyexiv2==2.15.2 + python -m pip install pyexiv2==${{ github.event.inputs.wheel_version }} python -m pip install pytest psutil - name: Test run: | @@ -50,7 +53,7 @@ jobs: python-version: ${{ matrix.python_version }} - name: Install dependencies run: | - python -m pip install pyexiv2==2.15.2 + python -m pip install pyexiv2==${{ github.event.inputs.wheel_version }} python -m pip install pytest psutil - name: Test run: | @@ -77,7 +80,7 @@ jobs: python-version: ${{ matrix.python_version }} - name: Install dependencies run: | - python -m pip install pyexiv2==2.15.2 + python -m pip install pyexiv2==${{ github.event.inputs.wheel_version }} python -m pip install pytest psutil - name: Test run: |