Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ptpt committed Feb 20, 2025
1 parent 8133b67 commit e870f12
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:

strategy:
matrix:
python-version: ["3.11"]
include:
# macOS builds
- platform: macos-latest # M1/M2
Expand Down Expand Up @@ -79,10 +78,10 @@ jobs:
# Error: setup-ffmpeg can only be run on 64-bit systems
if: matrix.architecture == 'x64'

- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: "3.11"
architecture: ${{ matrix.architecture }}

- name: Install dependencies
Expand Down Expand Up @@ -112,7 +111,7 @@ jobs:
MAPILLARY_TOOLS__TESTS_EXIFTOOL_EXECUTABLE: perl ${{ github.workspace }}/exiftool/exiftool.pl

- name: Build and test with Pyinstaller on Ubuntu
if: startsWith(matrix.platform, 'ubuntu')
if: contains(matrix.platform, 'ubuntu')
run: |
./script/build_linux
# Could run full integration tests with the binary (it might be slow)
Expand Down

0 comments on commit e870f12

Please sign in to comment.